mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-08 20:24:26 +02:00
11 lines
197 B
PHP
11 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";
|
|
}
|