cz.zcu.fav.kiv.editor.controller.errors
Class XslParserException

java.lang.Object
  extended by cz.zcu.fav.kiv.editor.controller.errors.XslParserException
All Implemented Interfaces:
org.xml.sax.ErrorHandler

public class XslParserException
extends java.lang.Object
implements org.xml.sax.ErrorHandler

The XslParserException class is used for reporting errors rised during parsing input XML and XSL files.

Version:
1.0, 05/2007
Author:
Marta Vaclavikova

Constructor Summary
XslParserException()
           
 
Method Summary
 void error(org.xml.sax.SAXParseException exception)
          Handles the error messages rised during file parsing.
 void fatalError(org.xml.sax.SAXParseException exception)
          Handles the fatal error messages rised during file parsing.
 void warning(org.xml.sax.SAXParseException exception)
          Handles the warning messages rised during file parsing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XslParserException

public XslParserException()
Method Detail

warning

public void warning(org.xml.sax.SAXParseException exception)
             throws org.xml.sax.SAXException
Handles the warning messages rised during file parsing.

Specified by:
warning in interface org.xml.sax.ErrorHandler
Parameters:
exception - the rised warning.
Throws:
org.xml.sax.SAXException - with the content of the rised warning.

error

public void error(org.xml.sax.SAXParseException exception)
           throws org.xml.sax.SAXException
Handles the error messages rised during file parsing.

Specified by:
error in interface org.xml.sax.ErrorHandler
Parameters:
exception - the rised error.
Throws:
org.xml.sax.SAXException - with the content of the rised error.

fatalError

public void fatalError(org.xml.sax.SAXParseException exception)
                throws org.xml.sax.SAXException
Handles the fatal error messages rised during file parsing.

Specified by:
fatalError in interface org.xml.sax.ErrorHandler
Parameters:
exception - the rised fatal error.
Throws:
org.xml.sax.SAXException - with the content of the rised fatal error.