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
2
3namespace Wikimedia\Assert;
4
5/**
6 * Marker interface for exceptions thrown by Assert. Since the exceptions thrown by Assert
7 * use different standard exceptions as base classes, the marker interface is needed to be
8 * able to catch them all at once.
9 *
10 * @since 0.2.0
11 *
12 * @license MIT
13 * @author Daniel Kinzler
14 * @copyright Wikimedia Deutschland e.V.
15 */
16interface AssertionException {
17
18}