Class JsonSyntaxException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.luis.utils.io.data.json.exception.JsonSyntaxException
All Implemented Interfaces:
Serializable

public class JsonSyntaxException extends RuntimeException
Thrown to indicate that the syntax of a json string is invalid.
The exception message will contain the details of the syntax error.
See Also:
  • Constructor Details

    • JsonSyntaxException

      public JsonSyntaxException()
      Constructs a new json syntax exception with no details.
    • JsonSyntaxException

      public JsonSyntaxException(@Nullable @Nullable String message)
      Constructs a new json syntax exception with the specified message.
      Parameters:
      message - The message of the exception
    • JsonSyntaxException

      public JsonSyntaxException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Constructs a new json syntax exception with the specified message and cause.
      Parameters:
      message - The message of the exception
      cause - The cause of the exception
    • JsonSyntaxException

      public JsonSyntaxException(@Nullable @Nullable Throwable cause)
      Constructs a new json syntax exception with the specified cause.
      Parameters:
      cause - The cause of the exception