public class CodingException
extends java.lang.Exception
An ASN.1 encoding or decoding exception signals an error situation. In decoding, the data arrived from the network may be syntactically incorrect or just too volumneous to be handled. In these kinds of situations the exception is raised.
| Constructor and Description |
|---|
CodingException()
Creates a CodingException without parameters.
|
CodingException(java.lang.String s)
Creates a CodingException with a description string as parameter.
|
CodingException(java.lang.String message,
java.lang.Throwable cause)
Creates a
CodingException with the specified detail
message and cause. |
public CodingException()
public CodingException(java.lang.String s)
s - the description stringpublic CodingException(java.lang.String message,
java.lang.Throwable cause)
CodingException with the specified detail
message and cause.message - the detail message.cause - the cause. (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)