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