* A derived decode error for signature format * error. */
| 88 | * error. |
| 89 | */ |
| 90 | class SignatureFormatError final : public DecodeError |
| 91 | { |
| 92 | public: |
| 93 | /** |
| 94 | */ |
| 95 | SignatureFormatError(std::string msg) |
| 96 | : DecodeError(std::move(msg)) |
| 97 | { |
| 98 | } |
| 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * A derived decode error for Key argument not present |
nothing calls this directly
no outgoing calls
no test coverage detected