README
异常消息上的简单图形界面
如何使用
使用 composer 安装并导入前控制器文件中的 composer 自动加载器后,在 front controller 的顶部插入此代码,紧接在导入 autoload.php 之后
use SunnyFlail\ExceptionHandler\ExceptionHandler;
set_error_handler([ExceptionHandler::class, "handleError"]);
set_exception_handler([ExceptionHandler::class, "handleException"]);