mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-12-01 00:56:26 +00:00
13 lines
295 B
PHP
13 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\AbuseFilter\Parser;
|
||
|
|
||
|
/**
|
||
|
* Exceptions thrown upon reaching the condition limit of the AbuseFilter parser.
|
||
|
*/
|
||
|
class AFPConditionLimitException extends AFPException {
|
||
|
public function __construct() {
|
||
|
parent::__construct( 'Condition limit reached.' );
|
||
|
}
|
||
|
}
|