org.pentaho.reporting.libraries.xmlns.parser
public class ParseException extends SAXException
Constructor Summary | |
---|---|
ParseException(String message)
Creates a new ParseException with the given message.
| |
ParseException(Exception e)
Creates a new ParseException with the given root exception.
| |
ParseException(String message, Exception e)
Creates a new ParseException with the given message and root exception.
| |
ParseException(String message, Locator locator)
Creates a new ParseException with the given message and the locator.
| |
ParseException(Exception e, Locator locator)
Creates a new ParseException with the given root exception and the
locator.
| |
ParseException(String message, Exception e, Locator locator)
Creates a new ParseException with the given message, root exception and
the locator.
|
Method Summary | |
---|---|
protected void | fillLocation(Locator locator)
Fills the location with the given locator.
|
int | getColumn()
Returns the column of the parse position where the error occured.
|
int | getLine()
Returns the line of the parse position where the error occured.
|
String | getMessage()
Modifies the message to give more detailed location information.
|
void | printStackTrace(PrintStream stream)
Prints the stack trace to the specified stream.
|
void | printStackTrace(PrintWriter writer)
Prints the stack trace to the specified writer.
|
String | toString()
Override toString to pick up any embedded exception.
|
Parameters: message the message
Parameters: e the exception
Parameters: message the message e the exception
Parameters: message the message locator the locator of the parser
Parameters: e the exception locator the locator of the parser
Parameters: message the message e the exception locator the locator of the parser
Parameters: locator the locator or null.
Returns: the column number or -1 if not known.
Returns: the line number or -1 if not known.
Returns: the modified exception message.
Parameters: stream the output stream.
Parameters: writer the writer.
Returns: A string representation of this exception.