You are here

class AuthcacheP13nRequestAccessDenied in Authenticated User Page Caching (Authcache) 7.2

Defines a request exception for 403 errors

Hierarchy

Expanded class hierarchy of AuthcacheP13nRequestAccessDenied

File

modules/authcache_p13n/includes/AuthcacheP13nRequestAccessDenied.inc, line 10
Defines a request exception for 403 errors

View source
class AuthcacheP13nRequestAccessDenied extends AuthcacheP13nRequestException {

  /**
   * Construct a new access denied exception.
   */
  public function __construct(Exception $previous = NULL) {
    parent::__construct('403 Forbidden', 403, $previous);
  }

}

Members