| 2591 | namespace Json { |
| 2592 | |
| 2593 | Exception::Exception(std::string const& msg) |
| 2594 | : msg_(msg) |
| 2595 | {} |
| 2596 | Exception::~Exception() throw() |
| 2597 | {} |
| 2598 | char const* Exception::what() const throw() |
nothing calls this directly
no outgoing calls
no test coverage detected