java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.luis.utils.io.codec.decoder.DecoderException
- All Implemented Interfaces:
Serializable
Thrown when an error occurs during decoding an object.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new decoder exception with no details.DecoderException
(@Nullable String message) Constructs a new decoder exception with the specified message.DecoderException
(@Nullable String message, @Nullable Throwable cause) Constructs a new decoder exception with the specified message and cause.DecoderException
(@Nullable Throwable cause) Constructs a new decoder exception with the specified 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
public DecoderException()Constructs a new decoder exception with no details. -
DecoderException
Constructs a new decoder exception with the specified message.- Parameters:
message
- The message of the exception
-
DecoderException
Constructs a new decoder exception with the specified message and cause.- Parameters:
message
- The message of the exceptioncause
- The cause of the exception
-
DecoderException
Constructs a new decoder exception with the specified cause.- Parameters:
cause
- The cause of the exception
-