MediaWiki  master
FatalError.php
Go to the documentation of this file.
1 <?php
37 class FatalError extends MWException {
38 
45  public function getHTML() {
46  return $this->getMessage();
47  }
48 
52  public function getText() {
53  return $this->getMessage();
54  }
55 }
Abort the web request with a custom HTML string that will represent the entire response.
Definition: FatalError.php:37
getHTML()
Replace our usual detailed HTML response for uncaught exceptions, with just the bare message as HTML.
Definition: FatalError.php:45
MediaWiki exception.
Definition: MWException.php:32