You are here

AuthcacheP13nRequestNotFound.inc in Authenticated User Page Caching (Authcache) 7.2

Defines a request exception for 404 errors.

File

modules/authcache_p13n/includes/AuthcacheP13nRequestNotFound.inc
View source
<?php

/**
 * @file
 * Defines a request exception for 404 errors.
 */

/**
 * Defines a request exception for 404 errors.
 */
class AuthcacheP13nRequestNotFound extends AuthcacheP13nRequestException {

  /**
   * Construct new 404 not found exception.
   */
  public function __construct(Exception $previous = NULL) {
    parent::__construct('404 Not Found', 404, $previous);
  }

}

Classes

Namesort descending Description
AuthcacheP13nRequestNotFound Defines a request exception for 404 errors.