|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.gate.yam.parse.ParsingProblem
class ParsingProblem
Class storing data about errors and warnings during parsing.
Field Summary | |
---|---|
int |
beginColumn
|
int |
beginLine
Where the error starts and ends. |
Exception |
e
Exception thrown by the parser (may be null). |
int |
endColumn
|
int |
endLine
|
String |
error
The text of the error. |
boolean |
included
Was this in an included file? |
Constructor Summary | |
ParsingProblem(int beginLine, int beginColumn, int endLine, int endColumn, Exception e, String error, boolean included)
Construction. |
Method Summary | |
---|---|
String
|
getMessage()
A message for printing. |
Methods inherited from class Object | |
---|---|
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
Field Detail |
---|
int beginColumn
int beginLine
Exception e
int endColumn
int endLine
String error
boolean included
Constructor Detail |
---|
public ParsingProblem(int beginLine, int beginColumn, int endLine, int endColumn, Exception e, String error, boolean included)
Method Detail |
---|
public String getMessage()
Groovy Documentation