/**
  * {@inheritdoc}
  */
 protected function writeError(OutputInterface $output, \Exception $error)
 {
     if ($output instanceof SymfonyStyle) {
         $output->newLine();
         $output->error($error->getMessage());
         return;
     }
     parent::writeError($output, $error);
 }