Class TsonParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.thevpc.tson.TsonParseException
- All Implemented Interfaces:
Serializable
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionintThe column number of the first character of this Token.intThe line number of the first character of this Token.intThe column number of the last character of this Token.intThe line number of the last character of this Token.The string image of the token.intAn integer that describes the kind of this token.int[][]String[] -
Constructor Summary
ConstructorsConstructorDescriptionTsonParseException(String message, Object source) TsonParseException(String message, String currentToken, int[][] expectedTokenSequences, String[] tokenImage, int currentTokenKind, int currentTokenBeginLine, int currentTokenBeginColumn, int currentTokenEndLine, int currentTokenEndColumn, String currentTokenImage, Object source) TsonParseException(Throwable cause, Object source) -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
currentToken
-
expectedTokenSequences
public int[][] expectedTokenSequences -
tokenImage
-
currentTokenKind
public int currentTokenKindAn integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java. -
currentTokenBeginLine
public int currentTokenBeginLineThe line number of the first character of this Token. -
currentTokenBeginColumn
public int currentTokenBeginColumnThe column number of the first character of this Token. -
currentTokenEndLine
public int currentTokenEndLineThe line number of the last character of this Token. -
currentTokenEndColumn
public int currentTokenEndColumnThe column number of the last character of this Token. -
currentTokenImage
The string image of the token. -
source
-
-
Constructor Details
-
TsonParseException
-
TsonParseException
-
TsonParseException
-