Package io.pravega.common.util
Class InvalidPropertyValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.pravega.common.util.ConfigurationException
-
- io.pravega.common.util.InvalidPropertyValueException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidPropertyValueException extends ConfigurationException
Exception that is thrown whenever a Property Value is invalid based on what is expected.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor 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.
-
-
-
Constructor Detail
-
InvalidPropertyValueException
public InvalidPropertyValueException(java.lang.String message)
Creates a new instance of the InvalidPropertyValueException class.- Parameters:
message- The message of the exception.
-
InvalidPropertyValueException
public InvalidPropertyValueException(java.lang.String fullPropertyName, java.lang.String actualValue)Creates a new instance of the InvalidPropertyValueException class.- Parameters:
fullPropertyName- The full name (component + property) of the property.actualValue- The actual value that was about to be processed.
-
InvalidPropertyValueException
public InvalidPropertyValueException(java.lang.String fullPropertyName, java.lang.String actualValue, java.lang.Throwable cause)Creates a new instance of the InvalidPropertyValueException class.- Parameters:
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.
-
-