| 77 | { |
| 78 | public: |
| 79 | ErrorCode(const Error::Type code, const bool fatal, const std::string& err) |
| 80 | : ExceptionCode(code, fatal) , err_(err) {} |
| 81 | |
| 82 | virtual const char* what() const throw() { return err_.c_str(); } |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected