Class JsonParseException

All Implemented Interfaces:
Serializable

public class JsonParseException extends JsonException
See Also:
  • Constructor Details

    • JsonParseException

      public JsonParseException(int line, int column)
    • JsonParseException

      public JsonParseException(Throwable cause, int line, int column)
    • JsonParseException

      public JsonParseException(String msg, int line, int column)
    • JsonParseException

      public JsonParseException(String msg, Throwable cause, int line, int column)
  • Method Details

    • getColumn

      public int getColumn()
      Column number where the parse exception occurred.
    • getLine

      public int getLine()
      Line number where the parse exception occurred.
    • formatMessage

      public static String formatMessage(String msg, int line, int column)