docu_system/files/log/error_handler/error_handler.php.txt

13 lines
314 B
Plaintext

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