slingit.org/system/log/error_handler/error_handler.php
2015-04-01 20:52:52 +02:00

12 lines
313 B
PHP

<?php
namespace SYSTEM\LOG;
class error_handler {
//Error Mask E_ALL, E_NOTICE ...
public static function MASK(){
throw new \RuntimeException("Implement this");}
//Errorhandler
public static function CALL(\Exception $E, $thrown){
throw new \RuntimeException("Implement this");}
}