aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_error_codes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_error_codes.h')
-rw-r--r--src/include/taler_error_codes.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/taler_error_codes.h b/src/include/taler_error_codes.h
index f75464c35..74660303d 100644
--- a/src/include/taler_error_codes.h
+++ b/src/include/taler_error_codes.h
@@ -2199,6 +2199,25 @@ enum TALER_ErrorCode
2199 TALER_EC_TIP_PICKUP_UNBLIND_FAILURE = 2812, 2199 TALER_EC_TIP_PICKUP_UNBLIND_FAILURE = 2812,
2200 2200
2201 /** 2201 /**
2202 * We failed to fetch contract terms from our merchant database. The
2203 * response is provided with HTTP status code
2204 * #MHD_HTTP_INTERNAL_SERVER_ERROR.
2205 */
2206 TALER_EC_GET_ORDERS_DB_LOOKUP_ERROR = 2900,
2207
2208 /**
2209 * We failed to find the contract terms from our merchant database.
2210 * The response is provided with HTTP status code #MHD_HTTP_NOT_FOUND.
2211 */
2212 TALER_EC_GET_ORDERS_ID_UNKNOWN = 2901,
2213
2214 /**
2215 * The contract hash provided by the wallet does not match the order.
2216 * The response is provided with HTTP status code #MHD_HTTP_FORBIDDEN.
2217 */
2218 TALER_EC_GET_ORDERS_WRONG_CONTRACT = 2902,
2219
2220 /**
2202 * We failed to contract terms from our merchant database. The 2221 * We failed to contract terms from our merchant database. The
2203 * response is provided with HTTP status code 2222 * response is provided with HTTP status code
2204 * #MHD_HTTP_INTERNAL_SERVER_ERROR. 2223 * #MHD_HTTP_INTERNAL_SERVER_ERROR.