Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ConditionLimitException
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace MediaWiki\Extension\AbuseFilter\Parser\Exception;
4
5/**
6 * Exceptions thrown upon reaching the condition limit of the AbuseFilter parser.
7 */
8class ConditionLimitException extends ExceptionBase {
9    public function __construct() {
10        parent::__construct( 'Condition limit reached.' );
11    }
12}