org.modeshape.graph.property
Class ValueFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.modeshape.graph.property.ValueFormatException
- All Implemented Interfaces:
- Serializable
@Immutable
public class ValueFormatException
- extends RuntimeException
A runtime exception denoting that a value could not be converted to a specific type because of the value's format.
- See Also:
- Serialized Form
ValueFormatException
public ValueFormatException(Object value,
PropertyType targetType)
- Parameters:
value
- the value that was not able to be convertedtargetType
- the PropertyType
to which the value was being converted
ValueFormatException
public ValueFormatException(Object value,
PropertyType targetType,
String message)
- Parameters:
value
- the value that was not able to be convertedtargetType
- the PropertyType
to which the value was being convertedmessage
- the message
ValueFormatException
public ValueFormatException(Object value,
PropertyType targetType,
Throwable cause)
- Parameters:
value
- the value that was not able to be convertedtargetType
- the PropertyType
to which the value was being convertedcause
- the cause of the exception
ValueFormatException
public ValueFormatException(Object value,
PropertyType targetType,
String message,
Throwable cause)
- Parameters:
value
- the value that was not able to be convertedtargetType
- the PropertyType
to which the value was being convertedmessage
- the messagecause
- the cause of the exception
toString
public String toString()
-
- Overrides:
toString
in class Throwable
getTargetType
public PropertyType getTargetType()
- Get the
PropertyType
to which the value
was being converted.
- Returns:
- the target type
getValue
public Object getValue()
- Get the original value that was being converted.
- Returns:
- the value
Copyright © 2008-2012 JBoss, a division of Red Hat. All Rights Reserved.