url = $url; $this->data = $data; parent::__construct($message, 0, $previous); } /** * Gets the URL of the resource which caused the exception. * * @return string * The URL of the resource. */ public function getUrl() { return $this->url; } /** * Gets the raw resource data, if available. * * @return array * The resource data. */ public function getData() { return $this->data; } }