/** 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); } }
/** * 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); }