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