1 | <?php |
||
13 | abstract class CoreException extends Exception { |
||
14 | |||
15 | /** |
||
16 | * Initializes exception. |
||
17 | * |
||
18 | * @param string $message |
||
19 | * The exception message. |
||
20 | * @param int $code |
||
21 | * Optional exception code. Defaults to 0. |
||
22 | * @param \Exception $previous |
||
23 | * Optional previous exception that was thrown. |
||
24 | */ |
||
25 | public function __construct($message, $code = 0, \Exception $previous = NULL) { |
||
28 | |||
29 | } |
||
30 |