/**
  * Starts request execution. Should be called after initialize.
  */
 public function start()
 {
     if (!$this->page) {
         $this->page = $this->getPageByFactory();
     }
     $this->exceptionHandler->setHandlerOutput($this->page);
     register_shutdown_function(array($this, "finish"));
     $this->page->startRequest();
 }