| 2854 | RuntimeError::RuntimeError(String const &msg) : Exception(msg) {} |
| 2855 | LogicError::LogicError(String const &msg) : Exception(msg) {} |
| 2856 | JSONCPP_NORETURN void throwRuntimeError(String const &msg) { throw RuntimeError(msg); } |
| 2857 | JSONCPP_NORETURN void throwLogicError(String const &msg) { throw LogicError(msg); } |
| 2858 | #else // !JSON_USE_EXCEPTION |
| 2859 | JSONCPP_NORETURN void throwRuntimeError(String const &msg) |
no outgoing calls
no test coverage detected