FileDocCategorySizeDatePackage
XMLExceptionHandler.javaAPI DocGlassfish v2 API2747Tue May 22 16:54:30 BST 2007oracle.toplink.essentials.internal.ejb.cmp3.xml.parser

XMLExceptionHandler

public class XMLExceptionHandler extends Object implements ErrorHandler

Fields Summary
private XMLException
m_xmlException
Constructors Summary
Methods Summary
public voiderror(org.xml.sax.SAXParseException exception)

        if (m_xmlException == null) {
        	m_xmlException = new XMLException();
        }
        m_xmlException.addNestedException(exception);
    
public voidfatalError(org.xml.sax.SAXParseException exception)

        this.error(exception);
    
public oracle.toplink.essentials.internal.ejb.cmp3.xml.parser.XMLExceptiongetXMLException()

    	return m_xmlException;
    
public voidwarning(org.xml.sax.SAXParseException exception)

    	this.error(exception);