From 1ed04e266bc57374137897e91439345b0b711f00 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 30 May 2011 00:21:06 +0000 Subject: [PATCH] @ingroup things --- includes/Exception.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/includes/Exception.php b/includes/Exception.php index a47532633b..385c1928ed 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -284,6 +284,7 @@ class ErrorPageError extends MWException { /** * Show an error when a user tries to do something they do not have the necessary * permissions for. + * @ingroup Exception */ class PermissionsError extends ErrorPageError { public $permission; @@ -319,6 +320,7 @@ class PermissionsError extends ErrorPageError { /** * Show an error when the wiki is locked/read-only and the user tries to do * something that requires write access + * @ingroup Exception */ class ReadOnlyError extends ErrorPageError { public function __construct(){ @@ -332,6 +334,7 @@ class ReadOnlyError extends ErrorPageError { /** * Show an error when the user hits a rate limit + * @ingroup Exception */ class ThrottledError extends ErrorPageError { public function __construct(){ @@ -349,6 +352,7 @@ class ThrottledError extends ErrorPageError { /** * Show an error when the user tries to do something whilst blocked + * @ingroup Exception */ class UserBlockedError extends ErrorPageError { public function __construct( Block $block ){ @@ -385,6 +389,7 @@ class UserBlockedError extends ErrorPageError { /** * Handler class for MWExceptions + * @ingroup Exception */ class MWExceptionHandler { /** -- 2.20.1