2019-05-02 03:33:33 +02:00
|
|
|
<?php
|
|
|
|
|
2019-10-11 17:55:02 +02:00
|
|
|
namespace Friendica\Module\HTTPException;
|
2019-05-02 03:33:33 +02:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
class PageNotFound extends BaseModule
|
|
|
|
{
|
2019-11-05 22:48:54 +01:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-02 03:33:33 +02:00
|
|
|
{
|
|
|
|
throw new HTTPException\NotFoundException(L10n::t('Page not found.'));
|
|
|
|
}
|
|
|
|
}
|