class EasyRdf_Http_Exception in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Exception.php \EasyRdf_Http_Exception
Hierarchy
- class \EasyRdf_Exception extends \Exception
- class \EasyRdf_Http_Exception
Expanded class hierarchy of EasyRdf_Http_Exception
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Http/ Exception.php, line 4
View source
class EasyRdf_Http_Exception extends EasyRdf_Exception {
private $body;
public function __construct($message = "", $code = 0, Exception $previous = null, $body = '') {
parent::__construct($message, $code, $previous);
$this->body = $body;
}
public function getBody() {
return $this->body;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EasyRdf_Http_Exception:: |
private | property | ||
EasyRdf_Http_Exception:: |
public | function | ||
EasyRdf_Http_Exception:: |
public | function |