NoHttpResponseException extends HTTP_Request2_ConnectionException

This commit is contained in:
Mikael Nordfeldth
2016-02-07 01:52:20 +01:00
parent 55546a5aab
commit 098c8b1df4
5 changed files with 7 additions and 6 deletions

View File

@@ -30,7 +30,7 @@
if (!defined('GNUSOCIAL')) { exit(1); }
// Can't extend HTTP_Request2_Exception since it requires an HTTP status code which we didn't get
class NoHttpResponseException extends Exception
class NoHttpResponseException extends HTTP_Request2_ConnectionException
{
public $url; // target URL
@@ -38,6 +38,6 @@ class NoHttpResponseException extends Exception
{
$this->url = $url;
// We could log an entry here with the search parameters
parent::__construct(sprintf(_('No HTTP response from URL %s.'), _ve($url)));
parent::__construct(sprintf(_('No HTTP response from URL %s.'), _ve($url)), self::READ_ERROR);
}
}