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