Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
RefLoopException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Settings\Source;
4
5use RuntimeException;
6
7/**
8 * Thrown when resolving references in a JSONSchema results in an infinite loop
9 *
10 * @since 1.42
11 */
12class RefLoopException extends RuntimeException {
13
14}