Class ContentFormatException

  • All Implemented Interfaces:
    Serializable

    public class ContentFormatException
    extends IOException
    Throws when a stream can't be parsed because some content uses an invalid format. This exception typically has a ParseException has its cause. It is similar in spirit to InvalidPropertiesFormatException.
    Since:
    2.2
    Author:
    Martin Desruisseaux (IRD)
    See Also:
    InvalidPropertiesFormatException, Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ContentFormatException​(String message)
      Constructs a new exception with the specified detail message.
      ContentFormatException​(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
    • Method Summary

      • Methods inherited from class Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ContentFormatException

        public ContentFormatException​(String message)
        Constructs a new exception with the specified detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      • ContentFormatException

        public ContentFormatException​(String message,
                                      Throwable cause)
        Constructs a new exception with the specified detail message and cause. The cause is saved for later retrieval by the Throwable.getCause() method.