handleException() публичный Метод

Uncaught exception handler
public handleException ( $e ) : boolean | null
$e
Результат boolean | null Handled?
Пример #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);
 }