You are here

class AuthcacheP13nRequestNotFound in Authenticated User Page Caching (Authcache) 7.2

Defines a request exception for 404 errors.

Hierarchy

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