Package org.rhq.enterprise.server.exception

Examples of org.rhq.enterprise.server.exception.LdapCommunicationException


                throw new LdapFilterException(message + " " + fException.getMessage());
            }
            //TODO: check for ldap connection/unavailable/etc. exceptions.
            else {
                log.error("LDAP communication error: " + e.getMessage(), e);
                throw new LdapCommunicationException(e);
            }
        } catch (IOException iex) {
            log.error("Unexpected LDAP communciation error:" + iex.getMessage(), iex);
            throw new LdapCommunicationException(iex);
        }
        //update end of query information
        groupQueryCurrentTime = System.currentTimeMillis();
        groupQueryComplete = true;
        return groupDetailsMap;
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.exception.LdapCommunicationException

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.