Object
Throwable
Exception
RuntimeException
IllegalArgumentException
ParameterNotFoundException
- All Implemented Interfaces:
Serializable
Thrown by
ParameterValueGroup
and ParameterDescriptorGroup
when a parameter is requested but not found in that group.- Since:
- 1.0
- See Also:
- Departure from OGC/ISO abstract specification:
Addition of element not in the ISO/OGC specification
This exception is not part of OGC specification.
-
Constructor Summary
ConstructorDescriptionParameterNotFoundException
(String message, String parameterName) Creates an exception with the specified message and parameter name. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the parameter which was required but not found.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParameterNotFoundException
Creates an exception with the specified message and parameter name.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.parameterName
- The name of the parameter which was required but not found.
-
-
Method Details
-
getParameterName
Returns the name of the parameter which was required but not found.- Returns:
- The required parameter name.
-