public class InvalidPropertyValueException extends ConfigurationException
| Constructor and Description |
|---|
InvalidPropertyValueException(java.lang.String message)
Creates a new instance of the InvalidPropertyValueException class.
|
InvalidPropertyValueException(java.lang.String fullPropertyName,
java.lang.String actualValue)
Creates a new instance of the InvalidPropertyValueException class.
|
InvalidPropertyValueException(java.lang.String fullPropertyName,
java.lang.String actualValue,
java.lang.Throwable cause)
Creates a new instance of the InvalidPropertyValueException class.
|
public InvalidPropertyValueException(java.lang.String message)
message - The message of the exception.public InvalidPropertyValueException(java.lang.String fullPropertyName,
java.lang.String actualValue)
fullPropertyName - The full name (component + property) of the property.actualValue - The actual value that was about to be processed.public InvalidPropertyValueException(java.lang.String fullPropertyName,
java.lang.String actualValue,
java.lang.Throwable cause)
fullPropertyName - The full name (component + property) of the property.actualValue - The actual value that was about to be processed.cause - The causing Exception for this.