2019-05-01 21:33:33 -04:00
|
|
|
<?php
|
|
|
|
|
2019-10-11 11:55:02 -04:00
|
|
|
namespace Friendica\Module\HTTPException;
|
2019-05-01 21:33:33 -04:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
class PageNotFound extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-01 21:33:33 -04:00
|
|
|
{
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('Page not found.'));
|
2019-05-01 21:33:33 -04:00
|
|
|
}
|
|
|
|
}
|