friendica/src/Module/HTTPException/MethodNotAllowed.php

16 lines
321 B
PHP
Raw Normal View History

<?php
namespace Friendica\Module\HTTPException;
use Friendica\BaseModule;
use Friendica\Core\L10n;
use Friendica\Network\HTTPException;
class MethodNotAllowed extends BaseModule
{
2019-11-05 21:22:54 +01:00
public static function content($parameters)
{
throw new HTTPException\MethodNotAllowedException(L10n::t('Method Not Allowed.'));
}
}