| 2327 | : msg_(msg) {} |
| 2328 | Exception::~Exception() throw() {} |
| 2329 | char const* Exception::what() const throw() { |
| 2330 | return msg_.c_str(); |
| 2331 | } |
| 2332 | RuntimeError::RuntimeError(std::string const& msg) |
| 2333 | : Exception(msg) {} |
| 2334 | LogicError::LogicError(std::string const& msg) |
no test coverage detected