]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - vendor/wikimedia/assert/src/PreconditionException.php
MediaWiki 1.30.2
[autoinstalls/mediawiki.git] / vendor / wikimedia / assert / src / PreconditionException.php
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  * @license MIT
12  * @author Daniel Kinzler
13  * @copyright Wikimedia Deutschland e.V.
14  */
15 class PreconditionException extends RuntimeException implements AssertionException {
16
17 }