friendica-github/src/Module/HTTPException/PageNotFound.php
2020-01-19 16:31:33 +01:00

15 lines
315 B
PHP

<?php
namespace Friendica\Module\HTTPException;
use Friendica\BaseModule;
use Friendica\DI;
use Friendica\Network\HTTPException;
class PageNotFound extends BaseModule
{
public static function content(array $parameters = [])
{
throw new HTTPException\NotFoundException(DI::l10n()->t('Page not found.'));
}
}