| 46 | virtual ~Error() throw(); |
| 47 | |
| 48 | virtual const char * what() const throw() { return mMessage; } |
| 49 | |
| 50 | friend inline std::ostream& operator<<(std::ostream &s, const Error &e) |
| 51 | { return s << e.what(); } |
nothing calls this directly
no outgoing calls
no test coverage detected