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

Class DecodeError

include/jwt/exceptions.hpp:75–84  ·  view source on GitHub ↗

* Exception thrown for decode related errors. */

Source from the content-addressed store, hash-verified

73 * Exception thrown for decode related errors.
74 */
75class DecodeError: public std::runtime_error
76{
77public:
78 /**
79 */
80 DecodeError(std::string msg)
81 : std::runtime_error(std::move(msg))
82 {
83 }
84};
85
86/**
87 * A derived decode error for signature format

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected