summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scm/webid-oidc/errors.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/scm/webid-oidc/errors.scm b/src/scm/webid-oidc/errors.scm
index 522e563..1eb5a78 100644
--- a/src/scm/webid-oidc/errors.scm
+++ b/src/scm/webid-oidc/errors.scm
@@ -1459,6 +1459,10 @@
((&invalid-signature)
(format #f (G_ "the signature ~a does not match key ~s with payload ~a")
(get 'signature) (get 'key) (get 'payload)))
+ ((&request-failed-unexpectedly)
+ (format #f (G_ "the request failed unexpectedly with code ~a: ~s")
+ (get 'response-code)
+ (get 'response-reason-phrase)))
((&undefined-variable)
(G_ "there is an undefined variable"))
((&origin)