| 219 | RuntimeError::RuntimeError(JSONCPP_STRING const& msg) : Exception(msg) {} |
| 220 | LogicError::LogicError(JSONCPP_STRING const& msg) : Exception(msg) {} |
| 221 | JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg) { |
| 222 | throw RuntimeError(msg); |
| 223 | } |
| 224 | JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg) { |
| 225 | throw LogicError(msg); |
| 226 | } |
no outgoing calls
no test coverage detected