X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FBadGatewayException.php;h=7ec93614f17afb6f093c05478043150b0984c22b;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=6fc80c909115ba09e19c09e6406c6fbdebff6239;hpb=15a857e4117a5e1e6e092709b3c07614934b09fb;p=friendica.git diff --git a/src/Network/HTTPException/BadGatewayException.php b/src/Network/HTTPException/BadGatewayException.php index 6fc80c9091..7ec93614f1 100644 --- a/src/Network/HTTPException/BadGatewayException.php +++ b/src/Network/HTTPException/BadGatewayException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class BadGatewayException extends HTTPException { - var $httpcode = 502; + protected $code = 502; + protected $httpdesc = 'Bad Gateway'; + protected $explanation = 'The server was acting as a gateway or proxy and received an invalid response from the upstream server.'; }