The DOMError Interface

package org.w3c.dom;

public interface DOMError {
 
  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-2004 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified February 6, 2004