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 15:22:54 -05:00
|
|
|
public static function content($parameters)
|
2019-05-01 21:33:33 -04:00
|
|
|
{
|
|
|
|
throw new HTTPException\NotFoundException(L10n::t('Page not found.'));
|
|
|
|
}
|
|
|
|
}
|