gate.xml
Class SimpleErrorHandler

java.lang.Object
  extended by gate.xml.SimpleErrorHandler
All Implemented Interfaces:
ErrorHandler

public class SimpleErrorHandler
extends Object
implements ErrorHandler


Constructor Summary
SimpleErrorHandler()
          SimpleErrorHandler constructor comment.
 
Method Summary
 void error(SAXParseException ex)
          This error method is called by the SAX parser when it encounts a recoverable(can continue parsing) error.
 void fatalError(SAXParseException ex)
          This fatalError method is called by the SAX parser when it encounts a fatal(can't continue parsing) error.
 void warning(SAXParseException ex)
          This warning is called by the SAX parser when there is the danger of a confusion.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimpleErrorHandler

public SimpleErrorHandler()
SimpleErrorHandler constructor comment.

Method Detail

error

public void error(SAXParseException ex)
           throws SAXException
This error method is called by the SAX parser when it encounts a recoverable(can continue parsing) error.

Specified by:
error in interface ErrorHandler
Throws:
SAXException

fatalError

public void fatalError(SAXParseException ex)
                throws SAXException
This fatalError method is called by the SAX parser when it encounts a fatal(can't continue parsing) error.

Specified by:
fatalError in interface ErrorHandler
Throws:
SAXException

warning

public void warning(SAXParseException ex)
             throws SAXException
This warning is called by the SAX parser when there is the danger of a confusion.

Specified by:
warning in interface ErrorHandler
Throws:
SAXException