Example #1
0
 /**
  * String representation of the exception
  *
  * @return string
  */
 public function __ToString()
 {
     if (version_compare(PHP_VERSION, '5.3.0', '<')) {
         if (null !== ($e = $this->getPrevious())) {
             return $e->__ToString() . "\n\nNext " . parent::__ToString();
         }
     }
     return parent::__ToString();
 }