1 | <?php |
||
23 | abstract class AbstractBootstrapException extends Exception { |
||
24 | |||
25 | /** |
||
26 | * Constructor. |
||
27 | * |
||
28 | * @param string $message The message. |
||
29 | * @param integer $code The code. |
||
30 | * @param Exception $previous The previous. |
||
31 | */ |
||
32 | public function __construct($message, $code = 500, Exception $previous = null) { |
||
35 | |||
36 | } |
||
37 |