Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
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 |
<?php | |
namespace Wikimedia\Assert; | |
use LogicException; | |
/** | |
* Exception indicating that a code path expected to be unreachable was reached. | |
* This generally means an error in the internal logic of a function, or a | |
* serious problem in the runtime environment. | |
* | |
* @since 0.5.1 | |
* | |
* @license MIT | |
* @author C. Scott Ananian | |
*/ | |
class UnreachableException extends LogicException implements AssertionException { | |
} |