|
8 | 8 | * All the error codes for A2A errors. |
9 | 9 | */ |
10 | 10 | public interface A2AErrorCodes { |
11 | | - final int CONTENT_TYPE_NOT_SUPPORTED_ERROR_CODE = -32005; |
12 | | - final int INTERNAL_ERROR_CODE = -32603; |
13 | | - final int INVALID_AGENT_RESPONSE_ERROR_CODE = -32006; |
14 | | - final int INVALID_PARAMS_ERROR_CODE = -32602; |
15 | | - final int JSON_PARSE_ERROR_CODE = -32700; |
16 | | - final int INVALID_REQUEST_ERROR_CODE = -32600; |
17 | | - final int METHOD_NOT_FOUND_ERROR_CODE = -32601; |
18 | | - final int PUSH_NOTIFICATION_NOT_SUPPORTED_ERROR_CODE = -32003; |
19 | | - final int UNSUPPORTED_OPERATION_ERROR_CODE = -32004; |
20 | | - final int TASK_NOT_CANCELABLE_ERROR_CODE = -32002; |
21 | | - final int TASK_NOT_FOUND_ERROR_CODE = -32001; |
22 | | - final int AUTHENTICATED_EXTENDED_CARD_NOT_CONFIGURED_ERROR_CODE = -32007; |
| 11 | + |
| 12 | + int TASK_NOT_FOUND_ERROR_CODE = -32001; |
| 13 | + int TASK_NOT_CANCELABLE_ERROR_CODE = -32002; |
| 14 | + int PUSH_NOTIFICATION_NOT_SUPPORTED_ERROR_CODE = -32003; |
| 15 | + int UNSUPPORTED_OPERATION_ERROR_CODE = -32004; |
| 16 | + int CONTENT_TYPE_NOT_SUPPORTED_ERROR_CODE = -32005; |
| 17 | + int INVALID_AGENT_RESPONSE_ERROR_CODE = -32006; |
| 18 | + int AUTHENTICATED_EXTENDED_CARD_NOT_CONFIGURED_ERROR_CODE = -32007; |
| 19 | + |
| 20 | + int INVALID_REQUEST_ERROR_CODE = -32600; |
| 21 | + int METHOD_NOT_FOUND_ERROR_CODE = -32601; |
| 22 | + int INVALID_PARAMS_ERROR_CODE = -32602; |
| 23 | + int INTERNAL_ERROR_CODE = -32603; |
| 24 | + |
| 25 | + int JSON_PARSE_ERROR_CODE = -32700; |
23 | 26 | } |
0 commit comments