mediawiki-extensions-AbuseF.../includes/Parser/AFPInternalException.php
Daimona Eaytoy e64049c30b Create dedicated types of parser exceptions
Introduce a clear distinction between internal exceptions and
user-visible exceptions, leaving AFPException as base abstract class.

Later, it should be possible to narrow some types around, e.g. in
ParserStatus (that might work with user-visible exceptions only).

Also a future TODO is putting all the exceptions in their own namespace
(probably ...\Parser\Exception).

Change-Id: I4e33a45117f0a3e73af03cc1e3f2734beaf2b5e1
2021-02-12 13:56:02 +00:00

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 {
}