* A derived decode error for Key argument not present * error. Only thrown if the algorithm set is not NONE. */
| 103 | * error. Only thrown if the algorithm set is not NONE. |
| 104 | */ |
| 105 | class KeyNotPresentError final : public DecodeError |
| 106 | { |
| 107 | public: |
| 108 | /** |
| 109 | */ |
| 110 | KeyNotPresentError(std::string msg) |
| 111 | : DecodeError(std::move(msg)) |
| 112 | { |
| 113 | } |
| 114 | }; |
| 115 | |
| 116 | |
| 117 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected