1 | <?php |
||
10 | class CheckException extends \Exception |
||
11 | { |
||
12 | const EXCEPTION_NAME = 'healthCheck'; |
||
13 | |||
14 | /** |
||
15 | * HttpCheckException constructor. |
||
16 | * |
||
17 | * @param string $message |
||
18 | * @param null|int $code |
||
19 | * @param null|\Exception $previous |
||
20 | */ |
||
21 | public function __construct($message = '', $code = null, \Exception $previous = null) |
||
28 | |||
29 | /** |
||
30 | * @param Exception $e |
||
31 | * @return string |
||
32 | */ |
||
33 | protected static function getDebug(Exception $e, $depth = -1) |
||
50 | |||
51 | public function getNestedDebug($depth = -1) |
||
55 | } |
||
56 |