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

namespace Wikimedia\Assert;

/**
 * Marker interface for exceptions thrown by Assert. Since the exceptions thrown by Assert
 * use different standard exceptions as base classes, the marker interface is needed to be
 * able to catch them all at once.
 *
 * @license MIT
 * @author Daniel Kinzler
 * @copyright Wikimedia Deutschland e.V.
 */
interface AssertionException {

}