Class ParameterNotFoundException

All Implemented Interfaces:
Serializable

public class ParameterNotFoundException extends IllegalArgumentException
Thrown by parameter groups (value and descriptor) when a parameter is requested but not found in that group. This exception is typically thrown by the following methods:
Since:
1.0
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, 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.