class RestfulNotFoundException in RESTful 7
@file Contains RestfulNotFoundException
Hierarchy
- class \RestfulException extends \Exception
- class \RestfulNotFoundException
Expanded class hierarchy of RestfulNotFoundException
1 string reference to 'RestfulNotFoundException'
- _restful_get_json_from_menu_status in ./
restful.module - Convert a menu status response to a valid JSON.
File
- exceptions/
RestfulNotFoundException.php, line 8 - Contains RestfulNotFoundException
View source
class RestfulNotFoundException extends RestfulException {
/**
* Defines the HTTP error code.
*
* @var int
*/
protected $code = 404;
/**
* {@inheritdoc}
*/
protected $description = 'Not Found.';
/**
* {@inheritdoc}
*/
protected $instance = 'help/restful/problem-instances-not-found';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RestfulException:: |
protected | property | Array keyed by the field name, and array of error messages as value. | |
RestfulException:: |
protected | property | Array of extra headers to set when throwing an exception. | |
RestfulException:: |
public | function | Add an error per field. | |
RestfulException:: |
final public | function | Gets the description of the exception. | |
RestfulException:: |
public | function | Return an array with all the errors. | |
RestfulException:: |
public | function | Get the associative array of headers. | |
RestfulException:: |
public | function | Get the URL to the error for the particular case. | |
RestfulException:: |
public | function | Return a string to the common problem type. | |
RestfulException:: |
public | function | Set a header. | |
RestfulNotFoundException:: |
protected | property | Defines the HTTP error code. | |
RestfulNotFoundException:: |
protected | property |
Defines the description. Overrides RestfulException:: |
|
RestfulNotFoundException:: |
protected | property |
Defines the instance resource. Overrides RestfulException:: |