Exeption Handling

This commit is contained in:
JonatanRek 2020-04-25 11:09:32 +02:00
parent 0f51826d3f
commit 8300e47b76
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ Autoloader::setRoot('/var/www/dev.steelants.cz/vasek/home-update/');
class ErrorHandler {
static function exception($exception){
error_log($exception);
header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, $exception->getCode());
echo '<h1>Oops!</h1><p>Something went wrong!</p>';
exit;
}