diff options
Diffstat (limited to 'src/econf.erl')
-rw-r--r-- | src/econf.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/econf.erl b/src/econf.erl index b150056ca..ec127c4e1 100644 --- a/src/econf.erl +++ b/src/econf.erl @@ -159,6 +159,8 @@ format_error({bad_pem, Why, Path}) -> [Path, pkix:format_error(Why)]); format_error({bad_cert, Why, Path}) -> format_error({bad_pem, Why, Path}); +format_error({bad_jwt_key, Path}) -> + format("No valid JWT key found in file: ~s", [Path]); format_error({bad_jid, Bad}) -> format("Invalid XMPP address: ~s", [Bad]); format_error({bad_user, Bad}) -> |