* Exception thrown for failures in OpenSSL * APIs while signing. */
| 59 | * APIs while signing. |
| 60 | */ |
| 61 | class SigningError : public std::runtime_error |
| 62 | { |
| 63 | public: |
| 64 | /** |
| 65 | */ |
| 66 | SigningError(std::string msg) |
| 67 | : std::runtime_error(std::move(msg)) |
| 68 | { |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | /** |
| 73 | * Exception thrown for decode related errors. |
nothing calls this directly
no outgoing calls
no test coverage detected