/**
  * Runs pages/error for uncaught exceptions
  * @param   \Exception  $e
  */
 public static function run(\Exception $e)
 {
     $p = new Page();
     $p->inherit('includes/exception-handler', array('e' => $e));
 }