class GoneException in RESTful 7.2
Hierarchy
- class \Drupal\restful\Exception\RestfulException extends \Drupal\restful\Exception\Exception
- class \Drupal\restful\Exception\GoneException
Expanded class hierarchy of GoneException
2 files declare their use of GoneException
- Resource.php in src/
Plugin/ resource/ Resource.php - Contains \Drupal\restful\Plugin\resource\Resource.
- ResourceInterface.php in src/
Plugin/ resource/ ResourceInterface.php - Contains \Drupal\restful\Plugin\resource\ResourceInterface.
File
- src/
Exception/ GoneException.php, line 10 - Contains \Drupal\restful\Exception\GoneException.
Namespace
Drupal\restful\ExceptionView source
class GoneException extends RestfulException {
/**
* Defines the HTTP error code.
*
* @var int
*/
protected $code = 410;
/**
* {@inheritdoc}
*/
protected $description = 'The resource at this end point is no longer available.';
/**
* {@inheritdoc}
*/
protected $instance = 'help/restful/problem-instances-gone';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GoneException:: |
protected | property | Defines the HTTP error code. | |
GoneException:: |
protected | property |
Exception description. Overrides RestfulException:: |
|
GoneException:: |
protected | property |
Defines the instance resource. Overrides RestfulException:: |
|
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. |