java.lang.Object |
↳ |
com.microstrategy.web.transform.MSTRLayoutParser.ParserErrorHandler |
Class Overview
This is the defualt implementation for the ErrorHandler object used
with the SAX Parser.
Summary
Public Methods |
void
|
error(SAXParseException spe)
This method is called when an error message is generated by the SAX Parser.
|
void
|
fatalError(SAXParseException spe)
This method is called when a fatal error message is generated by the SAX Parser.
|
void
|
warning(SAXParseException spe)
This method is called when a warning message is generated by the SAX Parser.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
org.xml.sax.ErrorHandler
abstract
void
|
error(SAXParseException arg0)
|
abstract
void
|
fatalError(SAXParseException arg0)
|
abstract
void
|
warning(SAXParseException arg0)
|
|
Public Constructors
The constructor for the default error handler.
Public Methods
public
void
error
(SAXParseException spe)
This method is called when an error message is generated by the SAX Parser.
Parameters
spe |
This is the SAXParserException generated by the SAX Parser.
|
public
void
fatalError
(SAXParseException spe)
This method is called when a fatal error message is generated by the SAX Parser.
Parameters
spe |
This is the SAXParserException generated by the SAX Parser.
|
public
void
warning
(SAXParseException spe)
This method is called when a warning message is generated by the SAX Parser.
Parameters
spe |
This is the SAXParserException generated by the SAX Parser.
|