Class InvalidDataException

All Implemented Interfaces:
Serializable

public class InvalidDataException extends UnsupportedOperationException
An exception that occurs when a DataBuilder or DataFormat is unable to handle an operation, which can include: DataBuilder.build(DataView), DataFormat.readFrom(InputStream), etc.
See Also:
  • Constructor Details

    • InvalidDataException

      public InvalidDataException()
      Constructs a new InvalidDataException.
    • InvalidDataException

      public InvalidDataException(String message)
      Constructs a new InvalidDataException with a message.
      Parameters:
      message - The message to display with the exception
    • InvalidDataException

      public InvalidDataException(String message, Throwable cause)
      Constructs a new InvalidDataException with the specified message and cause.
      Parameters:
      message - The exception message
      cause - The cause of this exception
    • InvalidDataException

      public InvalidDataException(Throwable cause)
      Constructs a new InvalidDataException with the specified cause and a null message.
      Parameters:
      cause - The cause of this exception