| 60 | }; |
| 61 | |
| 62 | class SchemaEvolutionError : public std::logic_error { |
| 63 | public: |
| 64 | explicit SchemaEvolutionError(const std::string& whatArg); |
| 65 | explicit SchemaEvolutionError(const char* whatArg); |
| 66 | virtual ~SchemaEvolutionError() noexcept override; |
| 67 | SchemaEvolutionError(const SchemaEvolutionError&); |
| 68 | SchemaEvolutionError& operator=(const SchemaEvolutionError&) = delete; |
| 69 | }; |
| 70 | |
| 71 | class CompressionError : public std::runtime_error { |
| 72 | public: |
no outgoing calls
no test coverage detected