* Base class exception for all kinds of verification errors. * Verification errors are thrown only when the verify * decode parameter is set to true. */
| 120 | * decode parameter is set to true. |
| 121 | */ |
| 122 | class VerificationError : public std::runtime_error |
| 123 | { |
| 124 | public: |
| 125 | /** |
| 126 | */ |
| 127 | VerificationError(std::string msg) |
| 128 | : std::runtime_error(std::move(msg)) |
| 129 | { |
| 130 | } |
| 131 | }; |
| 132 | |
| 133 | /** |
| 134 | * Derived from VerificationError. |
nothing calls this directly
no outgoing calls
no test coverage detected