mirror of
https://github.com/friendica/friendica
synced 2025-04-25 21:10:11 +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";
|
|
}
|