* Derived from VerificationError. * Thrown when the algorithm decoded in the header * is incorrect. */
| 136 | * is incorrect. |
| 137 | */ |
| 138 | class InvalidAlgorithmError final: public VerificationError |
| 139 | { |
| 140 | public: |
| 141 | /** |
| 142 | */ |
| 143 | InvalidAlgorithmError(std::string msg) |
| 144 | : VerificationError(std::move(msg)) |
| 145 | { |
| 146 | } |
| 147 | }; |
| 148 | |
| 149 | /** |
| 150 | * Derived from VerificationError. |
nothing calls this directly
no outgoing calls
no test coverage detected