| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class ResponseLoggerException extends RuntimeException |
||
| 21 | { |
||
| 22 | const MSG_START = 'There was a problem logging the start of the Request to the ResponseLogger'; |
||
| 23 | const CODE_START = 256; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param \Exception $e The previous exception |
||
| 27 | * |
||
| 28 | * @return ResponseLoggerException |
||
| 29 | */ |
||
| 30 | public static function duringStart(Exception $e) |
||
| 35 |