Package org.geotools.api.parameter
Class InvalidParameterValueException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- IllegalArgumentException
-
- InvalidParameterValueException
-
- All Implemented Interfaces:
Serializable
public class InvalidParameterValueException extends IllegalArgumentException
Thrown when an invalid value was given to a parameter.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
ParameterValue.setValue(int)
,ParameterValue.setValue(double)
,ParameterValue.setValue(Object)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidParameterValueException(String message, String parameterName, double value)
Creates an exception with the specified invalid value as a floating point.InvalidParameterValueException(String message, String parameterName, int value)
Creates an exception with the specified invalid value as an integer.InvalidParameterValueException(String message, String parameterName, Object value)
Creates an exception with the specified invalid value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getParameterName()
Returns the parameter name.Object
getValue()
Returns the invalid parameter value.-
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidParameterValueException
public InvalidParameterValueException(String message, String parameterName, Object value)
Creates an exception with the specified invalid value.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.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. The detail message is saved for later retrieval by theThrowable.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. The detail message is saved for later retrieval by theThrowable.getMessage()
method.parameterName
- The parameter name.value
- The invalid parameter value.
-
-