Ejemplo n.º 1
0
 /** Costruttore della classe. */
 public Tariffa() {
   try {
     this.dao = DAOFactory.getDAOFactory(DAOFactory.MYSQL).getTariffaDAO();
   } catch (Exception e) {
     DAOException ex = new DAOException(e.getMessage());
     ErrorHandlerInt er = ErrorHandler.getIstance();
     er.processError(ex.getClass(), ex, ErrorHandlerInt.FATAL);
   }
 }
Ejemplo n.º 2
0
 /**
  * Gestisce le eccezioni DAO che si verificano.
  *
  * @param e eccezione verificatasi
  * @param t tipo di errore da sollevare
  */
 private void handleExceptions(final Exception e, final Level t) {
   DAOException ex = new DAOException(e.getMessage());
   ErrorHandlerInt er = ErrorHandler.getIstance();
   er.processError(ex.getClass(), ex, t);
 }