Class NotReadyException

All Implemented Interfaces:
Serializable

public class NotReadyException extends NumericalException
Raised when attempting to do a certain operation and not all parameters have been provided or are correctly set.
See Also:
  • Constructor Details

    • NotReadyException

      public NotReadyException()
      Constructor.
    • NotReadyException

      public NotReadyException(String message)
      Constructor with String containing message.
      Parameters:
      message - Message indicating the cause of the exception.
    • NotReadyException

      public NotReadyException(String message, Throwable cause)
      Constructor with message and cause.
      Parameters:
      message - Message describing the cause of the exception.
      cause - Instance containing the cause of the exception.
    • NotReadyException

      public NotReadyException(Throwable cause)
      Constructor with cause.
      Parameters:
      cause - Instance containing the cause of the exception.