X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FGatewayTimeoutException.php;h=71141f1f868b6e26f2a84dc167c497a441222d93;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=306fbd41124707b3049e4cd12089efd54ba2dbf2;hpb=4224209497a6c7f723ea2b4d989f99890bccc47f;p=friendica.git diff --git a/src/Network/HTTPException/GatewayTimeoutException.php b/src/Network/HTTPException/GatewayTimeoutException.php index 306fbd4112..71141f1f86 100644 --- a/src/Network/HTTPException/GatewayTimeoutException.php +++ b/src/Network/HTTPException/GatewayTimeoutException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class GatewayTimeoutException extends HTTPException +{ + 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.'; +}