| 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) {} |
| 2658 | LogicError::LogicError(JSONCPP_STRING const& msg) : Exception(msg) {} |
| 2659 | JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg) { |
no outgoing calls
no test coverage detected