blob: 97e980359c77cdd6cfd2760170f8088844533d05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Wikimedia\Assert;
use RuntimeException;
/**
* Exception indicating that an precondition assertion failed.
* This generally means a disagreement between the caller and the implementation of a function.
*
* @license MIT
* @author Daniel Kinzler
* @copyright Wikimedia Deutschland e.V.
*/
class PreconditionException extends RuntimeException implements AssertionException {
}
|