handleException() public method

Uncaught exception handler
public handleException ( $e ) : boolean | null
$e
return boolean | null Handled?
Example #1
0
 /**
  * Uncaught exception handler
  * @param  object $e
  * @return boolean|null Handled?
  */
 public function handleException($e)
 {
     if (!isset($this->route)) {
         return false;
     }
     return $this->route->handleException($e);
 }