358baa9f62
- Module init, post and rawContent-triggered HTTPException generate the classic bare HTTP status page - Module content-triggered HTTPException generate themed error pages - Trim System::httpExit to the bare minimum
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Network\HTTPException;
|
|
|
|
class PageNotFound extends BaseModule
|
|
{
|
|
public static function content()
|
|
{
|
|
throw new HTTPException\NotFoundException(L10n::t('Page not found.'));
|
|
}
|
|
}
|