Uses of Class
org.jdom.JDOMException

Packages that use JDOMException
org.jdom 
org.jdom.input 
org.jdom.output 

Uses of JDOMException in org.jdom
 

Subclasses of JDOMException in org.jdom
class DataConversionException
          DataConversionException is thrown when a requested XML value is requested to be converted, and conversion fails.
 

Uses of JDOMException in org.jdom.input
 

Methods in org.jdom.input that throw JDOMException
DocumentDOMBuilder.build(File file)
           This builds a document from the supplied filename by constructing a DOM tree and reading information from the DOM to create a JDOM document, a slower approach than SAXBuilder but useful for debugging.
DocumentDOMBuilder.build(InputStream in)
           This builds a document from the supplied input stream by constructing a DOM tree and reading information from the DOM to create a JDOM document, a slower approach than SAXBuilder but useful for debugging.
DocumentDOMBuilder.build(URL url)
           This builds a document from the supplied URL by constructing a DOM tree and reading information from the DOM to create a JDOM document, a slower approach than SAXBuilder but useful for debugging.
DocumentSAXBuilder.build(File file)
           This builds a document from the supplied filename.
DocumentSAXBuilder.build(InputStream in, String systemId)
           This builds a document from the supplied input stream.
DocumentSAXBuilder.build(InputStream in)
           This builds a document from the supplied input stream.
DocumentSAXBuilder.build(Reader characterStream, String SystemId)
           This builds a document from the supplied Reader.
DocumentSAXBuilder.build(Reader characterStream)
           This builds a document from the supplied Reader.
DocumentSAXBuilder.build(String systemId)
           This builds a document from the supplied URI.
DocumentSAXBuilder.build(URL url)
           This builds a document from the supplied URL.
 

Uses of JDOMException in org.jdom.output
 

Methods in org.jdom.output that throw JDOMException
org.w3c.dom.AttrDOMOutputter.output(Attribute attribute)
           This converts the JDOM Attribute parameter to a DOM Attr, returning the DOM version.
org.w3c.dom.DocumentDOMOutputter.output(Document document)
           This converts the JDOM Document parameter to a DOM Document, returning the DOM version.
org.w3c.dom.ElementDOMOutputter.output(Element element)
           This converts the JDOM Element parameter to a DOM Element, returning the DOM version.
voidSAXOutputter.output(Document document)
           This will output the JDOM Document, firing off the SAX events that have been registered.