| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class SQLException extends RuntimeException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param string $sql SQL statement (with ":name" placeholders) |
||
| 16 | * @param array<string,mixed> $params map of parameter name/value pairs (to bind against placeholders in the statement) |
||
| 17 | * @param string $message |
||
| 18 | * @param int $code |
||
| 19 | * @param Exception|null $previous |
||
| 20 | */ |
||
| 21 | 1 | public function __construct( |
|
| 35 |