Package org.jdom2
Class DataConversionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jdom2.JDOMException
-
- org.jdom2.DataConversionException
-
- All Implemented Interfaces:
java.io.Serializable
public class DataConversionException extends JDOMException
Thrown when a data conversion from a string to value type fails, such as can happen with theAttribute
convenience getter functions.- Author:
- Brett McLaughlin, Jason Hunter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataConversionException(java.lang.String name, java.lang.String dataType)
Constructs an exception where the named construct couldn't be converted to the named data type.
-
-
-
Constructor Detail
-
DataConversionException
public DataConversionException(java.lang.String name, java.lang.String dataType)
Constructs an exception where the named construct couldn't be converted to the named data type.- Parameters:
name
- name of the construct whose value failed conversiondataType
- type the conversion was attempting to create
-
-