MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / SigningError

Class SigningError

include/jwt/exceptions.hpp:61–70  ·  view source on GitHub ↗

* Exception thrown for failures in OpenSSL * APIs while signing. */

Source from the content-addressed store, hash-verified

59 * APIs while signing.
60 */
61class SigningError : public std::runtime_error
62{
63public:
64 /**
65 */
66 SigningError(std::string msg)
67 : std::runtime_error(std::move(msg))
68 {
69 }
70};
71
72/**
73 * Exception thrown for decode related errors.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected