Class IllegalDataException

All Implemented Interfaces:
Serializable

public class IllegalDataException extends RuntimeException
Unchecked exception indicating that some data encountered was invalid or inappropriate in the context.
Author:
Garret Wilson
See Also:
  • Constructor Details

    • IllegalDataException

      public IllegalDataException()
      Constructs a new exception with no detail message.
    • IllegalDataException

      public IllegalDataException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The detail message.
    • IllegalDataException

      public IllegalDataException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method), or null if the cause is nonexistent or unknown.
    • IllegalDataException

      public IllegalDataException(Throwable cause)
      Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method), or null if the cause is nonexistent or unknown.