#
Junjie
2026-01-12 074851753d1187d4e547966d643f4323c6b002bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.ai.mcp.dto;
 
import lombok.Data;
 
@Data
class JsonRpcError {
    private int code;
    private String message;
    private Object data;
 
    public JsonRpcError(int code, String message, Object data) {
        this.code = code;
        this.message = message;
        this.data = data;
    }
}