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
Enclosing interface:
Codec<T>

public static class Codec.CodecException extends RuntimeException
An unchecked exception utilized for failures occurring during the serialization or deserialization process.
See Also:
  • Constructor Details

    • CodecException

      public CodecException(String message)
      Constructs a new exception with a specific detail message.
      Parameters:
      message - The error description.
    • CodecException

      public CodecException(String message, Throwable cause)
      Constructs a new exception with a detail message and an underlying cause.
      Parameters:
      message - The error description.
      cause - The throwable that triggered this exception.