. * */ namespace Friendica\Module\HTTPException; use Friendica\BaseModule; use Friendica\DI; use Friendica\Network\HTTPException; class PageNotFound extends BaseModule { public function content(): string { throw new HTTPException\NotFoundException(DI::l10n()->t('Page not found.')); } }