Exemplo n.º 1
0
 /**
  * Render exception for debugging.
  *
  * @param   \Exception  $exception  The exception we want to render.
  *
  * @return  void
  *
  * @since   1.0
  */
 public function renderException($exception)
 {
     if (!$this->getOption('v', 0)) {
         $this->out('')->out($exception->getMessage());
         return;
     }
     parent::renderException($exception);
 }