mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 02:03:53 +00:00
22b408d9e6
And cleanup weird spacing, conditionals, etc. Change-Id: I747216df65c2f34f7167612e90506890bc61880a
19 lines
400 B
PHP
19 lines
400 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Filter;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class ClosestFilterVersionNotFoundException extends RuntimeException {
|
|
/**
|
|
* @param int $filterID
|
|
* @param int $historyID
|
|
*/
|
|
public function __construct( int $filterID, int $historyID ) {
|
|
parent::__construct( "No version of filter $filterID closest to $historyID found" );
|
|
}
|
|
}
|