You are here

public function EasyRdf_Http_Exception::__construct 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::__construct()

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Exception.php, line 8

Class

EasyRdf_Http_Exception

Code

public function __construct($message = "", $code = 0, Exception $previous = null, $body = '') {
  parent::__construct($message, $code, $previous);
  $this->body = $body;
}