1 57 58 package com.sun.org.apache.xerces.internal.xni.parser; 59 60 import com.sun.org.apache.xerces.internal.xni.XNIException; 61 62 73 public interface XMLErrorHandler { 74 75 79 95 public void warning(String domain, String key, 96 XMLParseException exception) throws XNIException; 97 98 114 public void error(String domain, String key, 115 XMLParseException exception) throws XNIException; 116 117 141 public void fatalError(String domain, String key, 142 XMLParseException exception) throws XNIException; 143 144 } | Popular Tags |