| 2652 | namespace Json { |
| 2653 | |
| 2654 | Exception::Exception(JSONCPP_STRING const& msg) : msg_(msg) {} |
| 2655 | Exception::~Exception() JSONCPP_NOEXCEPT {} |
| 2656 | char const* Exception::what() const JSONCPP_NOEXCEPT { return msg_.c_str(); } |
| 2657 | RuntimeError::RuntimeError(JSONCPP_STRING const& msg) : Exception(msg) {} |
nothing calls this directly
no outgoing calls
no test coverage detected