getStatusCode().' '.$this->translator->trans($exception->getStatusText()); //Set title $title = $this->translator->trans($this->config['site']['title']).' - '.$section; //Set the message $message = $exception->getMessage(); //Set the trace $trace = $exception->getAsString(); //Render template return $this->render( '@RapsysAir/error.html.twig', ['title' => $title, 'section' => $section, 'message' => $message, 'trace' => $trace]+$this->context ); } }