14 lines
243 B
PHP
14 lines
243 B
PHP
|
<?php
|
||
|
namespace App\Utils;
|
||
|
|
||
|
class Error {
|
||
|
|
||
|
private $errorType = [];
|
||
|
|
||
|
function index(object $error) {
|
||
|
http_response_code($error->status);
|
||
|
echo "<h1>404 Not Found</h1>";
|
||
|
echo "$error->message";
|
||
|
exit();
|
||
|
}
|
||
|
}
|