summaryrefslogtreecommitdiff
path: root/vendor/wikimedia/assert/src/PostconditionException.php
blob: a7753ef01357c0924773f120799f793e381735e6 (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 a postcondition 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 PostconditionException extends LogicException implements AssertionException {

}