MediaWiki REL1_39
|
Public Member Functions | |
getHTML () | |
Format an HTML message for the current exception object. | |
getPageTitle () | |
Return the title of the page when reporting this error in a HTTP response. | |
getText () | |
Format plain text message for the current exception object. | |
isLoggable () | |
Whether to log this exception in the exception debug log. | |
msg ( $key, $fallback,... $params) | |
Get a message from i18n. | |
report () | |
Output a report about the exception and takes care of formatting. | |
reportHTML () | |
Output the exception report using HTML. | |
useMessageCache () | |
Can the extension use the Message class/wfMessage to get i18n-ed messages? | |
Static Public Member Functions | |
static | isCommandLine () |
Check whether we are in command line mode or not to report the exception in the correct format. | |
MediaWiki exception.
Definition at line 29 of file MWException.php.
MWException::getHTML | ( | ) |
Format an HTML message for the current exception object.
Reimplemented in FatalError, and HttpError.
Definition at line 110 of file MWException.php.
Referenced by reportHTML(), and wfStreamThumb().
MWException::getPageTitle | ( | ) |
Return the title of the page when reporting this error in a HTTP response.
Definition at line 160 of file MWException.php.
References msg().
Referenced by reportHTML().
MWException::getText | ( | ) |
Format plain text message for the current exception object.
Reimplemented in FatalError.
Definition at line 143 of file MWException.php.
Referenced by DatabaseInstaller\doUpgrade(), CreateAndPromote\execute(), and report().
|
static |
Check whether we are in command line mode or not to report the exception in the correct format.
Definition at line 240 of file MWException.php.
MWException::isLoggable | ( | ) |
Whether to log this exception in the exception debug log.
Reimplemented in HttpError.
Definition at line 53 of file MWException.php.
MWException::msg | ( | $key, | |
$fallback, | |||
$params ) |
Get a message from i18n.
string | $key | Message name |
string | $fallback | Default message if the message cache can't be called by the exception |
mixed | ...$params To pass to wfMessage() |
Definition at line 82 of file MWException.php.
References $fallback, $res, useMessageCache(), wfMessage(), and wfMsgReplaceArgs().
Referenced by ErrorPageError\__construct(), UploadChunkVerificationException\__construct(), UploadFromChunks\addChunk(), getHTML(), ErrorPageError\getMessageObject(), getPageTitle(), ErrorPageError\report(), UserNotLoggedIn\report(), reportHTML(), and UploadFromChunks\tryStashFile().
MWException::report | ( | ) |
Output a report about the exception and takes care of formatting.
It will be either HTML or plain text based on isCommandLine().
Reimplemented in HttpError.
Definition at line 205 of file MWException.php.
References getText(), and reportHTML().
MWException::reportHTML | ( | ) |
Output the exception report using HTML.
Definition at line 168 of file MWException.php.
References $wgOut, getHTML(), getPageTitle(), and msg().
Referenced by report().
MWException::useMessageCache | ( | ) |
Can the extension use the Message class/wfMessage to get i18n-ed messages?
Definition at line 64 of file MWException.php.
Referenced by msg().