Package it.eng.spago.error

Examples of it.eng.spago.error.EMFInternalError


      }
      tx.commit();
    } catch (HibernateException he) {
      logger.error("Error while erasing dossier parts: ", he);
      if (tx != null) tx.rollback()
      throw new EMFInternalError(EMFErrorSeverity.ERROR, "100")
    } finally {
      if (aSession != null) {
        if (aSession.isOpen()) aSession.close();
      }
      logger.debug("OUT");
View Full Code Here


      return;
    } catch (Exception ex) {
      SpagoBITracer.major(DossierConstants.NAME_MODULE, this.getClass().getName(),
                      "service", "Error while processin request", ex);
      EMFUserError emfue = new EMFUserError(EMFErrorSeverity.ERROR, 100);
      EMFInternalError internalError = new EMFInternalError(EMFErrorSeverity.ERROR, ex);
      errorHandler.addError(internalError);
      return;
    } finally {
      logger.debug("OUT");
    }
View Full Code Here

TOP

Related Classes of it.eng.spago.error.EMFInternalError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.