Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | final class ResponseLogStopException extends RuntimeException |
||
21 | { |
||
22 | const STOP_MSG = 'An error occurred while attempting to log the request end'; |
||
23 | const STOP_CODE = 8; |
||
24 | |||
25 | /** |
||
26 | * @param \Exception $e The previous exception |
||
27 | * |
||
28 | * @return ResponseLogStopException |
||
29 | */ |
||
30 | public static function stop(Exception $e) |
||
39 |