mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
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;
|
||
|
}
|
||
|
|
||
|
}
|