Package er.extensions.appserver

Examples of er.extensions.appserver.ERXApplication


       * If the session fails to archive, delete it.
       */
      info.archiveDataFromSession(session);
    } catch (Exception e) {
      log.error("Error archiving session! Deleting session.");
      ERXApplication app = ERXApplication.erxApplication();
      NSMutableDictionary extraInfo = app.extraInformationForExceptionInContext(e, context);
      app.reportException(e, context, extraInfo);
      /*
       * If the session info is new, just don't save it.
       * Otherwise, we need to delete the session.
       */
      if(!info.isNewObject()) {
View Full Code Here

TOP

Related Classes of er.extensions.appserver.ERXApplication

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.