You are here

class RestfulForbiddenException in RESTful 7

@file Contains RestfulForbiddenException

Hierarchy

Expanded class hierarchy of RestfulForbiddenException

1 string reference to 'RestfulForbiddenException'
_restful_get_json_from_menu_status in ./restful.module
Convert a menu status response to a valid JSON.

File

exceptions/RestfulForbiddenException.php, line 8
Contains RestfulForbiddenException

View source
class RestfulForbiddenException extends RestfulException {

  /**
   * Defines the HTTP error code.
   *
   * @var int
   */
  protected $code = 403;

  /**
   * {@inheritdoc}
   */
  protected $description = 'Forbidden.';

  /**
   * {@inheritdoc}
   */
  protected $instance = 'help/restful/problem-instances-forbidden';

}

Members

Namesort descending Modifiers Type Description Overrides
RestfulException::$fieldErrors protected property Array keyed by the field name, and array of error messages as value.
RestfulException::$headers protected property Array of extra headers to set when throwing an exception.
RestfulException::addFieldError public function Add an error per field.
RestfulException::getDescription final public function Gets the description of the exception.
RestfulException::getFieldErrors public function Return an array with all the errors.
RestfulException::getHeaders public function Get the associative array of headers.
RestfulException::getInstance public function Get the URL to the error for the particular case.
RestfulException::getType public function Return a string to the common problem type.
RestfulException::setHeader public function Set a header.
RestfulForbiddenException::$code protected property Defines the HTTP error code.
RestfulForbiddenException::$description protected property Defines the description. Overrides RestfulException::$description
RestfulForbiddenException::$instance protected property Defines the instance resource. Overrides RestfulException::$instance