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     * @param int $filterID
13     * @param int $historyID
14     */
15    public function __construct( int $filterID, int $historyID ) {
16        parent::__construct( "No version of filter $filterID closest to $historyID found" );
17    }
18}