mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-16 18:50:11 +03:00
10 lines
227 B
PHP
10 lines
227 B
PHP
<?php
|
|
|
|
class ExceptionHandler implements \Pecee\Handlers\IExceptionHandler
|
|
{
|
|
public function handleError(\Pecee\Http\Request $request, \Pecee\SimpleRouter\RouterEntry &$route = null, \Exception $error)
|
|
{
|
|
throw $error;
|
|
}
|
|
|
|
} |