MediaWiki master
|
Inherits Exception.
Inherited by ApiUsageException, ErrorPageError, ExternalStoreException, FatalError, HTMLFormFieldRequiredOptionsException, HttpError, ImageGalleryClassNotFoundException, JobQueueError, MWContentSerializationException, MediaWiki\Installer\InstallException, PasswordError, SkinException, UploadChunkFileException, UploadChunkVerificationException, UploadChunkZeroLengthFileException, and UploadStashException.
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 33 of file MWException.php.
MWException::getHTML | ( | ) |
Format an HTML message for the current exception object.
Reimplemented in FatalError, and HttpError.
Definition at line 114 of file MWException.php.
References msg().
Referenced by reportHTML().
MWException::getPageTitle | ( | ) |
Return the title of the page when reporting this error in a HTTP response.
Definition at line 164 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 147 of file MWException.php.
Referenced by DatabaseInstaller\doUpgrade(), and report().
|
static |
Check whether we are in command line mode or not to report the exception in the correct format.
Definition at line 245 of file MWException.php.
MWException::isLoggable | ( | ) |
Whether to log this exception in the exception debug log.
Reimplemented in HttpError.
Definition at line 57 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 86 of file MWException.php.
References $fallback, 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 210 of file MWException.php.
References getText(), and reportHTML().
MWException::reportHTML | ( | ) |
Output the exception report using HTML.
Definition at line 172 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 68 of file MWException.php.
Referenced by msg().