friendica/src/Network/HTTPException/GatewayTimeoutException.php
Hypolite Petovan 8eba329111 Remove code parameter from HTTPException constructor
- Remove duplicate HTTPException->httpcode class variable
2019-05-02 11:26:55 -04:00

11 lines
169 B
PHP

<?php
namespace Friendica\Network\HTTPException;
use Friendica\Network\HTTPException;
class GatewayTimeoutException extends HTTPException
{
protected $code = 504;
}