public function __construct($strError) { $this->strError = $strError; parent::__construct("Request exception: " . $strError); }
public function __construct($strMessage = "Unable to connect") { parent::__construct($strMessage); }
public function __construct($strMessage = "Streaming requests are only supported for PUT method") { parent::__construct($strMessage); }
public function __construct($strRequestType) { $this->strRequestType = $strRequestType; parent::__construct("Unsupported request type: {$strRequestType}"); }
public function __construct($strHttpVersion) { $this->strHttpVersion = $strHttpVersion; parent::__construct("Unsupported http version: {$strHttpVersion}"); }