Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2declare( strict_types = 1 );
3
4namespace Wikimedia\Assert;
5
6/**
7 * Marker interface for exceptions thrown by Assert. Since the exceptions thrown by Assert
8 * use different standard exceptions as base classes, the marker interface is needed to be
9 * able to catch them all at once.
10 *
11 * @since 0.2.0
12 *
13 * @license MIT
14 * @author Daniel Kinzler
15 * @copyright Wikimedia Deutschland e.V.
16 */
17interface AssertionException {
18
19}