Files
simple-php-router/test/Dummy/Handler/ExceptionHandler.php
Simon Sessingø 7e63197252 Major overhaul
2016-11-19 19:24:05 +01:00

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;
}
}