aboutsummaryrefslogtreecommitdiff
path: root/gnu-taler-error-codes
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2024-02-09 15:48:45 +0100
committerChristian Grothoff <grothoff@gnunet.org>2024-02-09 15:48:45 +0100
commit06b19cd6f11396e11b95e5480e4b07897f3663e7 (patch)
tree986ca6f0ecde603a5029c0a3df4580e530e327d5 /gnu-taler-error-codes
parentace673ed30067aa50ef5eebe16cc63ebe1ae066d (diff)
downloadgana-06b19cd6f11396e11b95e5480e4b07897f3663e7.tar.gz
gana-06b19cd6f11396e11b95e5480e4b07897f3663e7.zip
start review of error messages
Diffstat (limited to 'gnu-taler-error-codes')
-rw-r--r--gnu-taler-error-codes/registry.rec28
1 files changed, 14 insertions, 14 deletions
diff --git a/gnu-taler-error-codes/registry.rec b/gnu-taler-error-codes/registry.rec
index b76d973..1428077 100644
--- a/gnu-taler-error-codes/registry.rec
+++ b/gnu-taler-error-codes/registry.rec
@@ -32,49 +32,49 @@ HttpStatus: 0
32# We could not get the error code. 32# We could not get the error code.
33Value: 1 33Value: 1
34Name: INVALID 34Name: INVALID
35Description: A non-integer error code was returned in the JSON response. 35Description: An error response did not include an error code in the format expected by the client. Most likely, the server does not speak the GNU Taler protocol. Check the URL and/or the network connection to the server.
36HttpStatus: 0 36HttpStatus: 0
37 37
38Value: 2 38Value: 2
39Name: GENERIC_CLIENT_INTERNAL_ERROR 39Name: GENERIC_CLIENT_INTERNAL_ERROR
40Description: An internal failure happened on the client side. 40Description: An internal failure happened on the client side. Details should be in the local logs. Check if you are using the latest available version or file a report with the developers.
41HttpStatus: 0 41HttpStatus: 0
42 42
43# Fundamental problems detected client-side (10-19) 43# Fundamental problems detected client-side (10-19)
44 44
45Value: 10 45Value: 10
46Name: GENERIC_INVALID_RESPONSE 46Name: GENERIC_INVALID_RESPONSE
47Description: The response we got from the server was not even in JSON format. 47Description: The response we got from the server was not in the expected format. Most likely, the server does not speak the GNU Taler protocol. Check the URL and/or the network connection to the server.
48HttpStatus: 0 48HttpStatus: 0
49 49
50Value: 11 50Value: 11
51Name: GENERIC_TIMEOUT 51Name: GENERIC_TIMEOUT
52Description: An operation timed out. 52Description: The operation timed out. Trying again might help. Check the network connection.
53HttpStatus: 0 53HttpStatus: 0
54 54
55Value: 12 55Value: 12
56Name: GENERIC_VERSION_MALFORMED 56Name: GENERIC_VERSION_MALFORMED
57Description: The version string given does not follow the expected CURRENT:REVISION:AGE Format. 57Description: The protocol version given by the server does not follow the required format. Most likely, the server does not speak the GNU Taler protocol. Check the URL and/or the network connection to the server.
58HttpStatus: 0 58HttpStatus: 0
59 59
60Value: 13 60Value: 13
61Name: GENERIC_REPLY_MALFORMED 61Name: GENERIC_REPLY_MALFORMED
62Description: The service responded with a reply that was in JSON but did not satsify the protocol. Note that invalid cryptographic signatures should have signature-specific error codes. 62Description: The service responded with a reply that was in the right data format, but the content did not satisfy the protocol. Please file a bug report.
63HttpStatus: 0 63HttpStatus: 0
64 64
65Value: 14 65Value: 14
66Name: GENERIC_CONFIGURATION_INVALID 66Name: GENERIC_CONFIGURATION_INVALID
67Description: There is an error in the client-side configuration, for example the base URL specified is malformed. 67Description: There is an error in the client-side configuration, for example an option is set to an invalid value. Check the logs and fix the local configuration.
68HttpStatus: 0 68HttpStatus: 0
69 69
70Value: 15 70Value: 15
71Name: GENERIC_UNEXPECTED_REQUEST_ERROR 71Name: GENERIC_UNEXPECTED_REQUEST_ERROR
72Description: The client made a request to a service, but received an error response it does not know how to handle. 72Description: The client made a request to a service, but received an error response it does not know how to handle. Please file a bug report.
73HttpStatus: 0 73HttpStatus: 0
74 74
75Value: 16 75Value: 16
76Name: GENERIC_TOKEN_PERMISSION_INSUFFICIENT 76Name: GENERIC_TOKEN_PERMISSION_INSUFFICIENT
77Description: The token used by the client to authorize the request does not grant the required permissions for the request. 77Description: The token used by the client to authorize the request does not grant the required permissions for the request. Check the requirements and obtain a suitable authorization token to proceed.
78HttpStatus: 403 78HttpStatus: 403
79 79
80# Fundamental client-side protocol problems (20-29) 80# Fundamental client-side protocol problems (20-29)
@@ -82,27 +82,27 @@ HttpStatus: 403
82 82
83Value: 20 83Value: 20
84Name: GENERIC_METHOD_INVALID 84Name: GENERIC_METHOD_INVALID
85Description: The HTTP method used is invalid for this endpoint. 85Description: The HTTP method used is invalid for this endpoint. This is likely a bug in the client implementation. Check if you are using the latest available version and/or file a report with the developers.
86HttpStatus: 405 86HttpStatus: 405
87 87
88Value: 21 88Value: 21
89Name: GENERIC_ENDPOINT_UNKNOWN 89Name: GENERIC_ENDPOINT_UNKNOWN
90Description: There is no endpoint defined for the URL provided by the client. 90Description: There is no endpoint defined for the URL provided by the client. Check if you used the correct URL and/or file a report with the developers of the client software.
91HttpStatus: 404 91HttpStatus: 404
92 92
93Value: 22 93Value: 22
94Name: GENERIC_JSON_INVALID 94Name: GENERIC_JSON_INVALID
95Description: The JSON in the client's request was malformed (generic parse error). 95Description: The JSON in the client's request was malformed. This is likely a bug in the client implementation. Check if you are using the latest available version and/or file a report with the developers.
96HttpStatus: 400 96HttpStatus: 400
97 97
98Value: 23 98Value: 23
99Name: GENERIC_HTTP_HEADERS_MALFORMED 99Name: GENERIC_HTTP_HEADERS_MALFORMED
100Description: Some of the HTTP headers provided by the client caused the server to not be able to handle the request. 100Description: Some of the HTTP headers provided by the client were malformed and caused the server to not be able to handle the request. This is likely a bug in the client implementation. Check if you are using the latest available version and/or file a report with the developers.
101HttpStatus: 400 101HttpStatus: 400
102 102
103Value: 24 103Value: 24
104Name: GENERIC_PAYTO_URI_MALFORMED 104Name: GENERIC_PAYTO_URI_MALFORMED
105Description: The payto:// URI provided by the client is malformed. 105Description: The payto:// URI provided by the client is malformed.
106HttpStatus: 400 106HttpStatus: 400
107 107
108Value: 25 108Value: 25