예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function catchException(Bootstrap $bootstrap, \Exception $exception)
 {
     $this->response->setHttpResponseCode(404);
     $this->response->setHeader('Content-Type', 'text/plain');
     if ($bootstrap->isDeveloperMode()) {
         $this->response->setBody($exception->getMessage() . "\n" . $exception->getTraceAsString());
     }
     $this->response->sendResponse();
     return true;
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function catchException(Bootstrap $bootstrap, \Exception $exception)
 {
     if ($bootstrap->isDeveloperMode()) {
         $this->response->setHttpResponseCode(404);
         $this->response->setHeader('Content-Type', 'text/plain');
         $this->response->setBody($exception->getMessage() . "\n" . $exception->getTraceAsString());
         $this->response->sendResponse();
     } else {
         require $this->getFilesystem()->getDirectoryRead(DirectoryList::PUB)->getAbsolutePath('errors/404.php');
     }
     return true;
 }