Class ParameterNotFoundException

All Implemented Interfaces:
Serializable

public class ParameterNotFoundException extends IllegalArgumentException
Thrown when a required parameter was not found in a parameter group.
Since:
GeoAPI 1.0
Author:
Martin Desruisseaux (IRD)
See Also:
  • Constructor Details

    • ParameterNotFoundException

      public ParameterNotFoundException(String message, String parameterName)
      Creates an exception with the specified message and parameter name.
      Parameters:
      message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      parameterName - The name of the parameter which was required but not found.
  • Method Details

    • getParameterName

      public String getParameterName()
      Returns the name of the parameter which was required but not found.
      Returns:
      The required parameter name.