Class InvalidParameterValueException

All Implemented Interfaces:
Serializable

@UML(identifier="GC_InvalidParameterValue", specification=OGC_01004) public class InvalidParameterValueException extends IllegalArgumentException
Thrown by ParameterValue setter methods when they are given an invalid value. The value may be invalid because it is not assignable to the Java value class, not a member of the valid values set, or any other reason. This exception is typically thrown by the following methods:
Since:
1.0
See Also:
  • Constructor Details

    • InvalidParameterValueException

      public InvalidParameterValueException(String message, String parameterName, Object value)
      Creates an exception with the specified invalid value.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      parameterName - the parameter name.
      value - the invalid parameter value.
    • InvalidParameterValueException

      public InvalidParameterValueException(String message, String parameterName, double value)
      Creates an exception with the specified invalid value as a floating point.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      parameterName - the parameter name.
      value - the invalid parameter value.
    • InvalidParameterValueException

      public InvalidParameterValueException(String message, String parameterName, int value)
      Creates an exception with the specified invalid value as an integer.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      parameterName - the parameter name.
      value - the invalid parameter value.
    • InvalidParameterValueException

      public InvalidParameterValueException(String message, Throwable cause, String parameterName, Object value)
      Creates an exception with the specified message, cause and invalid value.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      cause - the cause, saved for later retrieval by the Throwable.getCause() method.
      parameterName - the parameter name.
      value - the invalid parameter value.
      Since:
      3.1
  • Method Details

    • getParameterName

      public String getParameterName()
      Returns the parameter name.
      Returns:
      the parameter name.
    • getValue

      public Object getValue()
      Returns the invalid parameter value.
      Returns:
      the invalid parameter value.