system/log/error_handler/error_handler.php

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");}
}