| 2660 | RuntimeError::RuntimeError(JSONCPP_STRING const& msg) : Exception(msg) {} |
| 2661 | LogicError::LogicError(JSONCPP_STRING const& msg) : Exception(msg) {} |
| 2662 | JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg) { |
| 2663 | throw RuntimeError(msg); |
| 2664 | } |
| 2665 | JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg) { |
| 2666 | throw LogicError(msg); |
| 2667 | } |
no outgoing calls
no test coverage detected