You are here

class EasyRdf_Http_Exception in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Exception.php \EasyRdf_Http_Exception

Hierarchy

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