Class Codec.CodecException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.darksoulq.abyssallib.common.serialization.Codec.CodecException
- All Implemented Interfaces:
Serializable
An unchecked exception utilized for failures occurring during the serialization
or deserialization process.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCodecException(String message) Constructs a new exception with a specific detail message.CodecException(String message, Throwable cause) Constructs a new exception with a detail message and an underlying cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CodecException
Constructs a new exception with a specific detail message.- Parameters:
message- The error description.
-
CodecException
-