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

12 lines
197 B
PHP

<?php
namespace Friendica\Network\HTTPException;
use Friendica\Network\HTTPException;
class ImATeapotException extends HTTPException
{
protected $code = 418;
var $httpdesc = "I'm A Teapot";
}