Package org.ldaptive
Class ConnectException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ldaptive.LdapException
-
- org.ldaptive.ConnectException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConnectException extends LdapException
Exception that indicates a connection attempt failed.- Author:
- Middleware Services
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectException(ResultCode code, java.lang.String msg)
Creates a new connect exception.ConnectException(ResultCode code, java.lang.String msg, java.lang.Throwable e)
Creates a new connect exception.ConnectException(ResultCode code, java.lang.Throwable e)
Creates a new connect exception.
-
Method Summary
-
Methods inherited from class org.ldaptive.LdapException
formatResult, getResultCode
-
-
-
-
Constructor Detail
-
ConnectException
public ConnectException(ResultCode code, java.lang.String msg)
Creates a new connect exception.- Parameters:
code
- result code describing this exceptionmsg
- describing this exception
-
ConnectException
public ConnectException(ResultCode code, java.lang.Throwable e)
Creates a new connect exception.- Parameters:
code
- result code describing this exceptione
- underlying exception
-
ConnectException
public ConnectException(ResultCode code, java.lang.String msg, java.lang.Throwable e)
Creates a new connect exception.- Parameters:
code
- result code describing this exceptionmsg
- describing this exceptione
- underlying exception
-
-