mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
4e63ee6164
Change-Id: Id77db0f21ee3fdaad4e040c853fadc605df212ea
13 lines
314 B
PHP
13 lines
314 B
PHP
<?php
|
|
|
|
class EchoCatchableFatalErrorException extends MWException {
|
|
|
|
public function __construct( $errno, $errstr, $errfile, $errline ) {
|
|
parent::__construct( "Catchable fatal error: $errstr", $errno );
|
|
// inherited protected variables from Exception
|
|
$this->file = $errfile;
|
|
$this->line = $errline;
|
|
}
|
|
|
|
}
|