org.apache.batik.script
public class InterpreterException extends RuntimeException
Interpreter
interface implementation.
Constructor Summary | |
---|---|
InterpreterException(String message, int lineno, int columnno)
Builds an instance of InterpreterException . | |
InterpreterException(Exception exception, String message, int lineno, int columnno)
Builds an instance of InterpreterException . |
Method Summary | |
---|---|
int | getColumnNumber()
Returns the column number where the error occurs. |
Exception | getException()
Returns the embedded exception. |
int | getLineNumber()
Returns the line number where the error occurs. |
String | getMessage()
Returns the message of this exception. |
InterpreterException
.Parameters: message the Exception
message. lineno the number of the line the error occurs. columnno the number of the column the error occurs.
InterpreterException
.Parameters: exception the embedded exception. message the Exception
message. lineno the number of the line the error occurs. columnno the number of the column the error occurs.