highlight
highlight copied to clipboard
PHP: caught exception
27 try {
28 $this->pdo
29 ->prepare($query->getSql())
30 ->execute($bindings);
31 } catch (PDOException $pdoException) {
32 throw new QueryException($query, $bindings, $pdoException); <
33 }