Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ClosestFilterVersionNotFoundException
n/a
0 / 0
n/a
0 / 0
1
n/a
0 / 0
 __construct
n/a
0 / 0
n/a
0 / 0
1
1<?php
2
3namespace MediaWiki\Extension\AbuseFilter\Filter;
4
5use RuntimeException;
6
7/**
8 * @codeCoverageIgnore
9 */
10class ClosestFilterVersionNotFoundException extends RuntimeException {
11
12    public function __construct( int $filterID, int $historyID ) {
13        parent::__construct( "No version of filter $filterID closest to $historyID found" );
14    }
15}