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

Class InvalidAlgorithmError

include/jwt/exceptions.hpp:138–147  ·  view source on GitHub ↗

* Derived from VerificationError. * Thrown when the algorithm decoded in the header * is incorrect. */

Source from the content-addressed store, hash-verified

136 * is incorrect.
137 */
138class InvalidAlgorithmError final: public VerificationError
139{
140public:
141 /**
142 */
143 InvalidAlgorithmError(std::string msg)
144 : VerificationError(std::move(msg))
145 {
146 }
147};
148
149/**
150 * Derived from VerificationError.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected