friendica/src/Module/HTTPException/MethodNotAllowed.php

16 lines
321 B
PHP

<?php
namespace Friendica\Module\HTTPException;
use Friendica\BaseModule;
use Friendica\Core\L10n;
use Friendica\Network\HTTPException;
class MethodNotAllowed extends BaseModule
{
public static function content($parameters)
{
throw new HTTPException\MethodNotAllowedException(L10n::t('Method Not Allowed.'));
}
}