public class ASN1Exception extends IllegalArgumentException
Constructor and Description |
---|
ASN1Exception()
Constructs a new
ASN1Exception instance. |
ASN1Exception(String msg)
Constructs a new
ASN1Exception instance with an initial message. |
ASN1Exception(String msg,
Throwable cause)
Constructs a new
ASN1Exception instance with an initial message and cause. |
ASN1Exception(Throwable cause)
Constructs a new
ASN1Exception instance with an initial cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ASN1Exception()
ASN1Exception
instance. The message is left blank (null
),
and no cause is specified.public ASN1Exception(String msg)
ASN1Exception
instance with an initial message. No cause is specified.msg
- the messagepublic ASN1Exception(Throwable cause)
ASN1Exception
instance with an initial cause. If a non-null
cause is specified, its message is used to initialize the message of this ASN1Exception
;
otherwise the message is left blank (null
).cause
- the causeCopyright © 2020 JBoss by Red Hat. All rights reserved.