Class TsonParseException

All Implemented Interfaces:
Serializable

public class TsonParseException extends RuntimeException
See Also:
  • Field Details

    • currentToken

      public String currentToken
    • expectedTokenSequences

      public int[][] expectedTokenSequences
    • tokenImage

      public String[] tokenImage
    • currentTokenKind

      public int currentTokenKind
      An 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 currentTokenBeginLine
      The line number of the first character of this Token.
    • currentTokenBeginColumn

      public int currentTokenBeginColumn
      The column number of the first character of this Token.
    • currentTokenEndLine

      public int currentTokenEndLine
      The line number of the last character of this Token.
    • currentTokenEndColumn

      public int currentTokenEndColumn
      The column number of the last character of this Token.
    • currentTokenImage

      public String currentTokenImage
      The string image of the token.
    • source

      public Object source
  • Constructor Details

    • TsonParseException

      public TsonParseException(String message, String currentToken, int[][] expectedTokenSequences, String[] tokenImage, int currentTokenKind, int currentTokenBeginLine, int currentTokenBeginColumn, int currentTokenEndLine, int currentTokenEndColumn, String currentTokenImage, Object source)
    • TsonParseException

      public TsonParseException(String message, Object source)
    • TsonParseException

      public TsonParseException(Throwable cause, Object source)