Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DatabaseException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Exceptions; |
3 | |
4 | class DatabaseException extends \Exception { |
5 | public function __construct(string $message = "", int $code = 0, \Throwable $previous = null) { |
6 | parent::__construct($message, $code, $previous); |
7 | } |
8 | } |