mirror of
https://github.com/friendica/friendica
synced 2025-02-03 21:38:52 +00:00
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
|
|
namespace Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
class ImATeapotException extends HTTPException
|
|
{
|
|
var $httpcode = 418;
|
|
var $httpdesc = "I'm A Teapot";
|
|
}
|