public class DecodeException
extends java.lang.IllegalArgumentException
| Constructor | Description |
|---|---|
DecodeException() |
Constructs a new
DecodeException instance. |
DecodeException(java.lang.String msg) |
Constructs a new
DecodeException instance with an initial message. |
DecodeException(java.lang.String msg,
java.lang.Throwable cause) |
Constructs a new
DecodeException instance with an initial message and cause. |
DecodeException(java.lang.Throwable cause) |
Constructs a new
DecodeException instance with an initial cause. |
public DecodeException()
DecodeException instance. The message is left blank (null), and no cause is
specified.public DecodeException(java.lang.String msg)
DecodeException instance with an initial message. No cause is specified.msg - the messagepublic DecodeException(java.lang.Throwable cause)
DecodeException instance with an initial cause. If a non-null cause is
specified, its message is used to initialize the message of this DecodeException; otherwise the message
is left blank (null).cause - the causepublic DecodeException(java.lang.String msg,
java.lang.Throwable cause)
DecodeException instance with an initial message and cause.msg - the messagecause - the causeCopyright © 2018 JBoss, a division of Red Hat, Inc.