mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 00:37:52 +00:00
8 lines
236 B
PHP
8 lines
236 B
PHP
<?php
|
|
class ExceptionHandler implements \Pecee\Handler\IExceptionHandler {
|
|
|
|
public function handleError(\Pecee\Http\Request $request, \Pecee\SimpleRouter\RouterEntry &$route = null, \Exception $error){
|
|
throw $error;
|
|
}
|
|
|
|
} |