Package org.jdom
Class DataConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jdom.JDOMException
org.jdom.DataConversionException
- All Implemented Interfaces:
Serializable
Thrown when a data conversion from a string to value type fails, such as
can happen with the
Attribute
convenience getter functions.- Version:
- $Revision: 1.14 $, $Date: 2007/11/10 05:28:58 $
- Author:
- Brett McLaughlin, Jason Hunter
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataConversionException
(String name, String dataType) Constructs an exception where the named construct couldn't be converted to the named data type. -
Method Summary
Methods inherited from class org.jdom.JDOMException
getCause, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, setStackTrace, toString
-
Constructor Details
-
DataConversionException
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
-