getRequest()->isMethod(Nette\Application\Request::FORWARD)) { $this->error(); } } public function renderDefault(Nette\Application\BadRequestException $exception): void { // load template 403.latte or 404.latte or ... 4xx.latte $file = __DIR__ . "/templates/Error/{$exception->getCode()}.latte"; $this->template->setFile(is_file($file) ? $file : __DIR__ . '/templates/Error/4xx.latte'); } }