1 | <?php |
||
8 | abstract class StatementException extends DBALException |
||
9 | { |
||
10 | /** |
||
11 | * @var StatementInterface |
||
12 | */ |
||
13 | private $statement; |
||
14 | |||
15 | /** |
||
16 | * @inheritDoc |
||
17 | */ |
||
18 | public function __construct($message = "", $code = 0, Throwable $previous = null, StatementInterface $statement) |
||
23 | |||
24 | /** |
||
25 | * @return StatementInterface |
||
26 | */ |
||
27 | public function getStatement(): StatementInterface |
||
31 | } |
||
32 |