15 lines
467 B
PHP
15 lines
467 B
PHP
<?php
|
|
|
|
namespace SYSTEM\LOG;
|
|
|
|
class error_handler_jsonoutput extends \SYSTEM\LOG\error_handler {
|
|
//Only those who die!
|
|
public static function CALL(\Exception $E, $thrown){
|
|
if($thrown){
|
|
try{
|
|
echo \SYSTEM\LOG\JsonResult::error($E);
|
|
} catch (\Exception $E){} //Error -> Ignore
|
|
return die(); //die is required cuz else some fatals cant be catched properly
|
|
}
|
|
}
|
|
} |