| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class ApplicationHealthCheckFailure extends RuntimeException implements CheckHealthHandlerError |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Use the code of one of the Zeroid Space Sergeant. |
||
| 14 | * @see https://en.wikipedia.org/wiki/Terrahawks#Characters |
||
| 15 | */ |
||
| 16 | public const ERROR_CODE = 101; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param ApplicationHealthError $exc |
||
| 20 | * @return self |
||
| 21 | */ |
||
| 22 | public static function fromApplicationHealthError(ApplicationHealthError $exc): self |
||
| 34 |