Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
InvariantException | 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 an invariant assertion failed. |
9 | * This generally means an error in the internal logic of a function, or a serious problem |
10 | * in the runtime environment. |
11 | * |
12 | * @since 0.1.0 |
13 | * |
14 | * @license MIT |
15 | * @author Daniel Kinzler |
16 | * @copyright Wikimedia Deutschland e.V. |
17 | */ |
18 | class InvariantException extends LogicException implements AssertionException { |
19 | |
20 | } |