raspap-webgui/includes/exceptions.php
2023-12-22 23:15:36 +00:00

11 lines
318 B
PHP

<?php
require_once 'src/RaspAP/Exceptions/ExceptionHandler.php';
// Import the ExceptionHandler class
use RaspAP\Exceptions\ExceptionHandler;
set_exception_handler(['RaspAP\Exceptions\ExceptionHandler', 'handleException']);
register_shutdown_function(['RaspAP\Exceptions\ExceptionHandler', 'handleFatalError']);
?>