This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
host_danube/system/log/error_handler/error_handler.php
2013-04-22 18:57:51 +02:00

12 lines
325 B
PHP

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