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

Class KeyNotPresentError

include/jwt/exceptions.hpp:105–114  ·  view source on GitHub ↗

* A derived decode error for Key argument not present * error. Only thrown if the algorithm set is not NONE. */

Source from the content-addressed store, hash-verified

103 * error. Only thrown if the algorithm set is not NONE.
104 */
105class KeyNotPresentError final : public DecodeError
106{
107public:
108 /**
109 */
110 KeyNotPresentError(std::string msg)
111 : DecodeError(std::move(msg))
112 {
113 }
114};
115
116
117/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected