Clarify comment on $wgRateLimits.
[lhc/web/wiklou.git] / includes / WikiError.php
index 029184d..efb645b 100644 (file)
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
- * @package MediaWiki
  */
 
 /**
  * Since PHP4 doesn't have exceptions, here's some error objects
  * loosely modeled on the standard PEAR_Error model...
- * @package MediaWiki
+ * @addtogroup Exception
  */
 class WikiError {
        /**
         * @param string $message
         */
-       function WikiError( $message ) {
+       function __construct( $message ) {
                $this->mMessage = $message;
        }
 
@@ -66,7 +65,7 @@ class WikiError {
 
 /**
  * Localized error message object
- * @package MediaWiki
+ * @addtogroup Exception
  */
 class WikiErrorMsg extends WikiError {
        /**
@@ -81,8 +80,8 @@ class WikiErrorMsg extends WikiError {
 }
 
 /**
- * @package MediaWiki
  * @todo document
+ * @addtogroup Exception
  */
 class WikiXmlError extends WikiError {
        /**
@@ -122,4 +121,4 @@ class WikiXmlError extends WikiError {
        }
 }
 
-?>
+