/** Set up the individual dynasty
  * @access public
  * @return void
  * @throws Pas_Exception_Param
  */
 public function dynastyAction()
 {
     if ($this->getParam('id', false)) {
         $this->view->dynasties = $this->_dynasties->getDynasty($this->getParam('id'));
         $emperors = new Emperors();
         $this->view->emperors = $emperors->getEmperorsDynasty($this->getParam('id'));
     } else {
         throw new Pas_Exception_Param($this->_missingParameter, 500);
     }
 }