| 132 | public: |
| 133 | NotImplementedException(const char *what) : Exception(what) {}; |
| 134 | NotImplementedException(const std::string &what) : Exception(what) {}; |
| 135 | |
| 136 | const char *type() const throw() override { return "Not Implemented"; } |
| 137 | }; |
no outgoing calls
no test coverage detected