java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.netswitch.iso.iso8583.IsoException
- All Implemented Interfaces:
Serializable
Signals that a decoding or encoding error has occurred.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newIsoException
instance.IsoException
(String message) Constructs a newIsoException
instance with a message.IsoException
(String message, Throwable cause) Constructs a newIsoException
instance with message and cause.IsoException
(Throwable cause) Constructs a newIsoException
instance with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IsoException
public IsoException()Constructs a newIsoException
instance. -
IsoException
Constructs a newIsoException
instance with a message.- Parameters:
message
- the detail message.
-
IsoException
Constructs a newIsoException
instance with a cause.- Parameters:
cause
- the cause of the exception.
-
IsoException
Constructs a newIsoException
instance with message and cause.- Parameters:
message
- the detail message.cause
- the cause of the exception.
-