Class JsonException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JsonValueException

public class JsonException extends RuntimeException
An exception that is thrown during JSON operations.
See Also:
  • Constructor Details

    • JsonException

      public JsonException()
      Constructs a new exception with null as its detail message.
    • JsonException

      public JsonException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The message.
    • JsonException

      public JsonException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The cause.
    • JsonException

      public JsonException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The message.
      cause - The cause.