Package com.lucimber.dbus.codec.decoder
Class DecoderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.lucimber.dbus.codec.decoder.DecoderException
- All Implemented Interfaces:
Serializable
A
RuntimeException
that gets thrown by a Decoder
, if the decoding of a value
isn't possible.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDecoderException
(String message) Creates a new instance with a message.DecoderException
(String message, Throwable cause) Creates a new instance with a message and a cause.DecoderException
(Throwable cause) Creates a new 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
-
DecoderException
Creates a new instance with a message.- Parameters:
message
- the associated message
-
DecoderException
Creates a new instance with a cause.- Parameters:
cause
- the associated cause
-
DecoderException
Creates a new instance with a message and a cause.- Parameters:
message
- the associated messagecause
- the associated cause
-