Package com.isode.x400.highlevel
Class BadDNException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.isode.x400.highlevel.X400APIException
-
- com.isode.x400.highlevel.BadDNException
-
- All Implemented Interfaces:
java.io.Serializable
public class BadDNException extends X400APIException
A class representing an exception which can be thrown as a result of an attempt to use an illegal Distinguished Name or Relative Distinguished Name- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadDNException(java.lang.String message)
Constructs a new BadDNException with the specified message.BadDNException(java.lang.String message, int nativeErrorCode)
Constructs a new BadDNException with the specified message and error code
-
Method Summary
-
Methods inherited from class com.isode.x400.highlevel.X400APIException
getLocalizedMessage, getNativeErrorCode, getNativeErrorString, nativeErrorToString
-
-
-
-
Constructor Detail
-
BadDNException
public BadDNException(java.lang.String message, int nativeErrorCode)
Constructs a new BadDNException with the specified message and error code- Parameters:
message
- gives extra detail about the specific exception.nativeErrorCode
- a value as returned from underlying native code which may be useful in determining the cause of the problem.
-
BadDNException
public BadDNException(java.lang.String message)
Constructs a new BadDNException with the specified message.- Parameters:
message
- gives extra detail about the specific exception.
-
-