Class EncodingException

All Implemented Interfaces:
Serializable

public class EncodingException extends CodecException
Indicates an issue with encoding the input Object stream with a focus on not being able to encode Objects. As opposed to a more general I/O errors or a CodecException such as a configuration issue that an Encoder may also choose to raise.
Since:
5.0
Author:
Rossen Stoyanchev
See Also:
  • Constructor Details

    • EncodingException

      public EncodingException(String msg)
      Create a new EncodingException.
      Parameters:
      msg - the detail message
    • EncodingException

      public EncodingException(String msg, @Nullable Throwable cause)
      Create a new EncodingException.
      Parameters:
      msg - the detail message
      cause - root cause for the exception, if any