
com.nimbusds.ldap.dnresolver.DNSearchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dn-resovler Show documentation
Show all versions of dn-resovler Show documentation
Algorithms for resolving the distinguished name (DN) of an
LDAP directory object.
The newest version!
package com.nimbusds.ldap.dnresolver;
/**
* Thrown to indicate an LDAP search exception to a {@link DNSearchRequest}.
*/
public class DNSearchException extends Exception {
/**
* Creates a new DN search exception with the specified message.
*
* @param message The exception message.
*/
public DNSearchException(final String message) {
this(message, null);
}
/**
* Creates a new DN search exception with the specified message and
* cause.
*
* @param message The exception message.
* @param cause The exception cause.
*/
public DNSearchException(final String message, final Throwable cause) {
super("Couldn't do LDAP search: " + message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy