The DOMError Interface

package org.w3c.dom;

public interface DOMError {
    // ErrorSeverity
    public static final short SEVERITY_WARNING          = 0;
    public static final short SEVERITY_ERROR            = 1;
    public static final short SEVERITY_FATAL_ERROR      = 2;

    public short  getSeverity();
    public String getMessage();
    public String getType();
    public Object getRelatedException();
    public Object getRelatedData();
    public DOMLocator getLocation();

}

Previous | Next | Top | Cafe con Leche

Copyright 2000-2003 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified March 14, 2003