| 27 | namespace orc { |
| 28 | |
| 29 | class NotImplementedYet : public std::logic_error { |
| 30 | public: |
| 31 | explicit NotImplementedYet(const std::string& whatArg); |
| 32 | explicit NotImplementedYet(const char* whatArg); |
| 33 | ~NotImplementedYet() noexcept override; |
| 34 | NotImplementedYet(const NotImplementedYet&); |
| 35 | |
| 36 | private: |
| 37 | NotImplementedYet& operator=(const NotImplementedYet&); |
| 38 | }; |
| 39 | |
| 40 | class ParseError : public std::runtime_error { |
| 41 | public: |
no outgoing calls
no test coverage detected