Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
FilterVersionNotFoundException
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 FilterVersionNotFoundException extends RuntimeException {
11    /**
12     * @param int $version
13     */
14    public function __construct( int $version ) {
15        parent::__construct( "Filter version $version does not exist" );
16    }
17}