类 JsonException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.agentscope.core.util.JsonException
- 所有已实现的接口:
Serializable
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(String message) Constructs a new JSON exception with the specified detail message.JsonException(String message, Throwable cause) Constructs a new JSON exception with the specified detail message and cause.JsonException(Throwable cause) Constructs a new JSON exception with the specified cause. -
方法概要
-
构造器详细资料
-
JsonException
Constructs a new JSON exception with the specified detail message.- 参数:
message- the detail message
-
JsonException
Constructs a new JSON exception with the specified detail message and cause.- 参数:
message- the detail messagecause- the cause of the exception
-
JsonException
Constructs a new JSON exception with the specified cause.- 参数:
cause- the cause of the exception
-