Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
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 |
<?php | |
namespace Wikimedia\Assert; | |
use LogicException; | |
/** | |
* Exception indicating that a postcondition assertion failed. | |
* This generally means an error in the internal logic of a function, or a serious problem | |
* in the runtime environment. | |
* | |
* @since 0.1.0 | |
* | |
* @license MIT | |
* @author Daniel Kinzler | |
* @copyright Wikimedia Deutschland e.V. | |
*/ | |
class PostconditionException extends LogicException implements AssertionException { | |
} |