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

Class VerificationError

include/jwt/exceptions.hpp:122–131  ·  view source on GitHub ↗

* Base class exception for all kinds of verification errors. * Verification errors are thrown only when the verify * decode parameter is set to true. */

Source from the content-addressed store, hash-verified

120 * decode parameter is set to true.
121 */
122class VerificationError : public std::runtime_error
123{
124public:
125 /**
126 */
127 VerificationError(std::string msg)
128 : std::runtime_error(std::move(msg))
129 {
130 }
131};
132
133/**
134 * Derived from VerificationError.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected