You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
730 B
31 lines
730 B
<?php namespace CodeIgniter\Exceptions;
|
|
|
|
class PageNotFoundException extends \OutOfBoundsException implements ExceptionInterface
|
|
{
|
|
/**
|
|
* Error code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 404;
|
|
|
|
public static function forPageNotFound(string $message = null)
|
|
{
|
|
return new static($message ?? lang('HTTP.pageNotFound'));
|
|
}
|
|
|
|
public static function forEmptyController()
|
|
{
|
|
return new static(lang('HTTP.emptyController'));
|
|
}
|
|
|
|
public static function forControllerNotFound(string $controller, string $method)
|
|
{
|
|
return new static(lang('HTTP.controllerNotFound', [$controller, $method]));
|
|
}
|
|
|
|
public static function forMethodNotFound(string $method)
|
|
{
|
|
return new static(lang('HTTP.methodNotFound', [$method]));
|
|
}
|
|
}
|
|
|