| org.springframework.binding.format.InvalidFormatException
InvalidFormatException | public class InvalidFormatException extends NestedRuntimeException (Code) | | Thrown when a formatted value is of the wrong form.
author: Keith Donald |
InvalidFormatException | public InvalidFormatException(String invalidValue, String expectedFormat)(Code) | | Create a new invalid format exception.
Parameters: invalidValue - the invalid value Parameters: expectedFormat - the expected format |
InvalidFormatException | public InvalidFormatException(String invalidValue, String expectedFormat, Throwable cause)(Code) | | Create a new invalid format exception.
Parameters: invalidValue - the invalid value Parameters: expectedFormat - the expected format Parameters: cause - the underlying cause of this exception |
InvalidFormatException | public InvalidFormatException(String invalidValue, String expectedFormat, String message, Throwable cause)(Code) | | Create a new invalid format exception.
Parameters: invalidValue - the invalid value Parameters: expectedFormat - the expected format Parameters: message - a descriptive message Parameters: cause - the underlying cause of this exception |
getExpectedFormat | public String getExpectedFormat()(Code) | | Returns the expected format.
|
getInvalidValue | public String getInvalidValue()(Code) | | Returns the invalid value.
|
|
|