X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FGatewayTimeoutException.php;h=71141f1f868b6e26f2a84dc167c497a441222d93;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=bcd98080eda8e82113e007058f0a45985c38de87;hpb=5c1fae25368c41aef9a8a18ccda27fc35b0b9318;p=friendica.git diff --git a/src/Network/HTTPException/GatewayTimeoutException.php b/src/Network/HTTPException/GatewayTimeoutException.php index bcd98080ed..71141f1f86 100644 --- a/src/Network/HTTPException/GatewayTimeoutException.php +++ b/src/Network/HTTPException/GatewayTimeoutException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class GatewayTimeoutException extends HTTPException { - var $httpcode = 504; + protected $code = 504; + protected $httpdesc = 'Gateway Timeout'; + protected $explanation = 'The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.'; }