public static function handleException(Exception $e)
 {
     self::$_exception = $e;
     require_once 'Pages/ExceptionsPage.php';
     $ep = new ExceptionsPage();
     return $ep->index($e);
 }