Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
UnreachableException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Wikimedia\Assert; |
4 | |
5 | use LogicException; |
6 | |
7 | /** |
8 | * Exception indicating that a code path expected to be unreachable was reached. |
9 | * This generally means an error in the internal logic of a function, or a |
10 | * serious problem in the runtime environment. |
11 | * |
12 | * @since 0.5.1 |
13 | * |
14 | * @license MIT |
15 | * @author C. Scott Ananian |
16 | */ |
17 | class UnreachableException extends LogicException implements AssertionException { |
18 | |
19 | } |