Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
PreconditionException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Wikimedia\Assert; |
4 | |
5 | use RuntimeException; |
6 | |
7 | /** |
8 | * Exception indicating that an precondition assertion failed. |
9 | * This generally means a disagreement between the caller and the implementation of a function. |
10 | * |
11 | * @since 0.1.0 |
12 | * |
13 | * @license MIT |
14 | * @author Daniel Kinzler |
15 | * @copyright Wikimedia Deutschland e.V. |
16 | */ |
17 | class PreconditionException extends RuntimeException implements AssertionException { |
18 | |
19 | } |