mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
20 lines
399 B
PHP
20 lines
399 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gazelle;
|
|
|
|
class Error404 extends Error {
|
|
public static function errorCode(): int {
|
|
return 404;
|
|
}
|
|
|
|
public static function errorLabel(): string {
|
|
return 'Not Found';
|
|
}
|
|
|
|
public static function errorDescription(): string {
|
|
return 'The requested page does not exist, or if it did once, it no longer exists.';
|
|
}
|
|
}
|