summaryrefslogtreecommitdiff
path: root/vendor/wikimedia/assert/src/InvariantException.php
blob: 870ce1a021275e2e3d57a2d07688c903487bac24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Wikimedia\Assert;

use LogicException;

/**
 * Exception indicating that an invariant assertion failed.
 * This generally means an error in the internal logic of a function, or a serious problem
 * in the runtime environment.
 *
 * @license MIT
 * @author Daniel Kinzler
 * @copyright Wikimedia Deutschland e.V.
 */
class InvariantException extends LogicException implements AssertionException {

}