mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
11 lines
318 B
PHP
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']);
|
||
|
?>
|
||
|
|