friendica/src/Network/HTTPException/GoneException.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
159 B
PHP

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