Class JsonSyntaxException

  • All Implemented Interfaces:
    Serializable

    public final class JsonSyntaxException
    extends JsonParseException
    This exception is raised when Gson attempts to read (or write) a malformed JSON element.
    Author:
    Inderjeet Singh, Joel Leitch
    See Also:
    Serialized Form
    • Constructor Detail

      • JsonSyntaxException

        public JsonSyntaxException​(String msg)
      • JsonSyntaxException

        public JsonSyntaxException​(String msg,
                                   Throwable cause)
      • JsonSyntaxException

        public JsonSyntaxException​(Throwable cause)
        Creates exception with the specified cause. Consider using JsonSyntaxException(String, Throwable) instead if you can describe what actually happened.
        Parameters:
        cause - root exception that caused this exception to be thrown.