* Exception thrown for decode related errors. */
| 73 | * Exception thrown for decode related errors. |
| 74 | */ |
| 75 | class DecodeError: public std::runtime_error |
| 76 | { |
| 77 | public: |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected