diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-14 00:19:20 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-14 00:19:20 +0530 |
commit | d5f894690ee554909c1f8b1b8179fa110784dc4f (patch) | |
tree | 43a9711d8376dca5f4c6dba607b5d80670720794 | |
parent | cbe325cb0f3e492e28ee148106c6c81e4db7d6bf (diff) |
error codes
-rw-r--r-- | packages/taler-wallet-core/src/TalerErrorCode.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/TalerErrorCode.ts b/packages/taler-wallet-core/src/TalerErrorCode.ts index 1557007f4..fd3ca1fc8 100644 --- a/packages/taler-wallet-core/src/TalerErrorCode.ts +++ b/packages/taler-wallet-core/src/TalerErrorCode.ts @@ -3147,6 +3147,13 @@ export enum TalerErrorCode { WALLET_WITHDRAW_RESERVE_UNKNOWN_AT_EXCHANGE = 7010, /** + * The wallet core service is not available. + * Returned with an HTTP status code of #MHD_HTTP_UNINITIALIZED (0). + * (A value of 0 indicates that the error is generated client-side). + */ + WALLET_CORE_NOT_AVAILABLE = 7011, + + /** * End of error code range. * Returned with an HTTP status code of #MHD_HTTP_UNINITIALIZED (0). * (A value of 0 indicates that the error is generated client-side). |