Total Complexity | 2 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ServiceUnavailableException extends HTTPReturnCodeException { |
||
11 | protected $defaultLogLevel = LOGLEVEL_INFO; |
||
12 | protected $httpReturnCode = HTTP_CODE_503; |
||
13 | protected $httpReturnMessage = "Service Unavailable"; |
||
14 | protected $httpHeaders = []; |
||
15 | protected $showLegal = false; |
||
16 | |||
17 | public function __construct($message = "", $code = 0, $previous = null, $logLevel = false) { |
||
24 |