1 | <?php |
||
8 | class BootstrapException extends Exception { |
||
9 | |||
10 | /** |
||
11 | * Initializes exception. |
||
12 | * |
||
13 | * @param string $message |
||
14 | * The exception message. |
||
15 | * @param int $code |
||
16 | * Optional exception code. Defaults to 0. |
||
17 | * @param \Exception $previous |
||
18 | * Optional previous exception that was thrown. |
||
19 | */ |
||
20 | public function __construct($message, $code = 0, \Exception $previous = NULL) { |
||
23 | |||
24 | } |
||
25 |