You are here

class AuthcacheP13nRequestInvalidInput in Authenticated User Page Caching (Authcache) 7.2

Defines a request exception for 400 errors.

@ignore sniffer_files_linelength_toolong

Hierarchy

Expanded class hierarchy of AuthcacheP13nRequestInvalidInput

See also

http://stackoverflow.com/questions/1959947/whats-an-appropriate-http-sta...

File

modules/authcache_p13n/includes/AuthcacheP13nRequestInvalidInput.inc, line 13
Defines a request exception for 400 errors.

View source
class AuthcacheP13nRequestInvalidInput extends AuthcacheP13nRequestException {

  /**
   * Construct a 400 request exception.
   */
  public function __construct(Exception $previous = NULL) {
    parent::__construct('400 Bad Request', 400, $previous);
  }

}

Members