| 274 | }; |
| 275 | |
| 276 | class InvalidKeyError final: public VerificationError |
| 277 | { |
| 278 | public: |
| 279 | /** |
| 280 | */ |
| 281 | InvalidKeyError(std::string msg) |
| 282 | : VerificationError(std::move(msg)) |
| 283 | { |
| 284 | } |
| 285 | }; |
| 286 | |
| 287 | /** |
| 288 | * Derived from VerificationError. |
nothing calls this directly
no outgoing calls
no test coverage detected