Skip to content

Commit aae114a

Browse files
committed
HTCondor-1290: Update to Openssl 3.0
-Fixed JWTVerificationException error throw message to include 'token verification failed:' like it used to have
1 parent a8c5977 commit aae114a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scitokens_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class UnsupportedKeyException : public std::runtime_error {
2626
class JWTVerificationException : public std::runtime_error {
2727
public:
2828
explicit JWTVerificationException(const std::string &msg)
29-
: std::runtime_error(msg)
29+
: std::runtime_error("token verification failed: " + msg)
3030
{}
3131
};
3232

0 commit comments

Comments
 (0)