Name

DOMError

Synopsis

This Level 3 interface describes an error that occurs while processing a document (such as when loading, saving, validating or normalizing it). An object that implements this interface is passed to the registered DOMErrorHandler, if any. The constants defined by this interface represent error severity levels.

Note that this interface is unrelated to DOMException class or to the java.lang.Error and java.lang.Exception classes.

public interface DOMError {
// Public Constants
     public static final short SEVERITY_ERROR;                           =2
     public static final short SEVERITY_FATAL_ERROR;                     =3
     public static final short SEVERITY_WARNING;                         =1
                  // Public Instance Methods
     org.w3c.dom.DOMLocator getLocation( );  
     String getMessage( );  
     Object getRelatedData( );  
     Object getRelatedException( );  
     short getSeverity( );  
     String getType( );  
}

Passed To

DOMErrorHandler.handleError( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.