Package com.unboundid.asn1
Class ASN1Exception
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.unboundid.util.LDAPSDKException
-
- com.unboundid.asn1.ASN1Exception
-
- All Implemented Interfaces:
java.io.Serializable
@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class ASN1Exception extends LDAPSDKException
This class defines an exception that can be thrown if a problem occurs while interacting with ASN.1 BER elements.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ASN1Exception(java.lang.String message)
Creates a new ASN.1 exception with the provided message.ASN1Exception(java.lang.String message, java.lang.Throwable cause)
Creates a new ASN.1 exception with the provided message and cause.
-
Method Summary
-
Methods inherited from class com.unboundid.util.LDAPSDKException
getExceptionMessage, getExceptionMessage, toString, toString
-
-
-
-
Constructor Detail
-
ASN1Exception
public ASN1Exception(java.lang.String message)
Creates a new ASN.1 exception with the provided message.- Parameters:
message
- A message explaining the problem that occurred.
-
ASN1Exception
public ASN1Exception(java.lang.String message, java.lang.Throwable cause)
Creates a new ASN.1 exception with the provided message and cause.- Parameters:
message
- A message explaining the problem that occurred.cause
- The underlying cause for this exception.
-
-