Package org.xdams.exception

Examples of org.xdams.exception.ConnectionException


    try {
      System.out.println("ConnectionManager.getConnection() " + archive);
      xwconn = XWDriverManager.getConnection("org.xdams.xw.XWDriver", "regesta://" + archive.getHost() + ":" + archive.getPort() + "/" + archive.getAlias() + "/pne=" + archive.getPne() + ";", "lettore", "");
    } catch (Exception e) {
      logger.debug("ERROR getConnection error=" + e.getMessage(), xwconn);
      throw new ConnectionException("ERROR getConnection error=" + e.getMessage() + "; archive:" + archive);
    }
    return xwconn;
  }
View Full Code Here

TOP

Related Classes of org.xdams.exception.ConnectionException

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.