/**
  * Prints the error page.
  */
 public function show()
 {
     $this->information .= '<b>event id:</b> ' . intval($this->getEventID()) . '<br />';
     $this->information .= '<b>event handler no:</b> ' . intval($this->getEventTypeID()) . '<br />';
     $this->information .= '<b>event handler objekt:</b> ' . StringUtil::encodeHTML(print_r($this->h, true)) . '<br />';
     parent::show();
 }
 /**
  * Prints the error page.
  */
 public function show()
 {
     $this->information .= '<b>socket error:</b> ' . StringUtil::encodeHTML($this->getErrorDesc()) . '<br />';
     $this->information .= '<b>socket error number:</b> ' . StringUtil::encodeHTML($this->getErrorNumber()) . '<br />';
     $this->information .= '<b>socket address:</b> ' . StringUtil::encodeHTML($this->getSocketAddress()) . '<br />';
     $this->information .= '<b>socket port:</b> ' . StringUtil::encodeHTML($this->getSocketPort()) . '<br />';
     parent::show();
 }
 /**
  * Prints the error page.
  */
 public function show()
 {
     $this->information .= '<b>sql type:</b> ' . StringUtil::encodeHTML($this->getDBType()) . '<br />';
     $this->information .= '<b>sql error:</b> ' . StringUtil::encodeHTML($this->getErrorDesc()) . '<br />';
     $this->information .= '<b>sql error number:</b> ' . StringUtil::encodeHTML($this->getErrorNumber()) . '<br />';
     $this->information .= '<b>sql version:</b> ' . StringUtil::encodeHTML($this->getSQLVersion()) . '<br />';
     parent::show();
 }