class AuthcacheP13nRequestNotFound in Authenticated User Page Caching (Authcache) 7.2
Defines a request exception for 404 errors.
Hierarchy
- class \AuthcacheP13nRequestException extends \Exception
- class \AuthcacheP13nRequestNotFound
Expanded class hierarchy of AuthcacheP13nRequestNotFound
File
- modules/
authcache_p13n/ includes/ AuthcacheP13nRequestNotFound.inc, line 11 - Defines a request exception for 404 errors.
View source
class AuthcacheP13nRequestNotFound extends AuthcacheP13nRequestException {
/**
* Construct new 404 not found exception.
*/
public function __construct(Exception $previous = NULL) {
parent::__construct('404 Not Found', 404, $previous);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AuthcacheP13nRequestNotFound:: |
public | function |
Construct new 404 not found exception. Overrides AuthcacheP13nRequestException:: |