File size: 318 Bytes
8c6097b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All rights reserved.
#!/usr/bin/env python3
from enum import IntEnum
class JsonRpcErr(IntEnum):
PARSE_ERROR = -32700
INVALID_REQUEST = -32600
METHOD_NOT_FOUND = -32601
INVALID_PARAMS = -32602
INTERNAL_ERROR = -32603
REQUEST_TIMEOUT = -32000
|