| 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) { |
| 2660 | throw RuntimeError(msg); |
| 2661 | } |
| 2662 | JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg) { |
| 2663 | throw LogicError(msg); |
| 2664 | } |
no outgoing calls
no test coverage detected