mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-12-01 00:56:26 +00:00
11 lines
271 B
PHP
11 lines
271 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\AbuseFilter\Parser;
|
||
|
|
||
|
/**
|
||
|
* Exceptions from the AbuseFilter parser that should not be reported to the user, because they indicate
|
||
|
* programming errors or unexpected situations.
|
||
|
*/
|
||
|
class AFPInternalException extends AFPException {
|
||
|
}
|