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