/**
  * Handles a normal/general exception and terminate the script
  *
  * @access public
  * @static
  * @param exception $generalException Instanz of an exception
  */
 public function handleException($generalException)
 {
     /* delegate - static call */
     phpmediadb_exception::showError($generalException);
     /* sorry, have to kill script - no way i can fix it */
     die;
 }