Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| PostconditionException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare( strict_types = 1 ); |
| 3 | |
| 4 | namespace Wikimedia\Assert; |
| 5 | |
| 6 | use LogicException; |
| 7 | |
| 8 | /** |
| 9 | * Exception indicating that a postcondition assertion failed. |
| 10 | * This generally means an error in the internal logic of a function, or a serious problem |
| 11 | * in the runtime environment. |
| 12 | * |
| 13 | * @since 0.1.0 |
| 14 | * |
| 15 | * @license MIT |
| 16 | * @author Daniel Kinzler |
| 17 | * @copyright Wikimedia Deutschland e.V. |
| 18 | */ |
| 19 | class PostconditionException extends LogicException implements AssertionException { |
| 20 | |
| 21 | } |