类 JsonException

所有已实现的接口:
Serializable

public class JsonException extends RuntimeException
Runtime exception for JSON processing errors.

This exception wraps underlying JSON processing exceptions (such as Jackson's JsonProcessingException) to provide a unified exception type for JSON operations across the framework.

另请参阅:
  • 构造器详细资料

    • JsonException

      public JsonException(String message)
      Constructs a new JSON exception with the specified detail message.
      参数:
      message - the detail message
    • JsonException

      public JsonException(String message, Throwable cause)
      Constructs a new JSON exception with the specified detail message and cause.
      参数:
      message - the detail message
      cause - the cause of the exception
    • JsonException

      public JsonException(Throwable cause)
      Constructs a new JSON exception with the specified cause.
      参数:
      cause - the cause of the exception