diff options
Diffstat (limited to 'includes/Exception.php')
-rw-r--r-- | includes/Exception.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/Exception.php b/includes/Exception.php index ad7ec14a933e..81cf12f6d9d1 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -1,5 +1,8 @@ <?php +/** + * @addtogroup Exception + */ class MWException extends Exception { function useOutputPage() { @@ -125,6 +128,7 @@ class MWException extends Exception /** * Exception class which takes an HTML error message, and does not * produce a backtrace. Replacement for OutputPage::fatalError(). + * @addtogroup Exception */ class FatalError extends MWException { function getHTML() { @@ -136,6 +140,9 @@ class FatalError extends MWException { } } +/** + * @addtogroup Exception + */ class ErrorPageError extends MWException { public $title, $msg; |