| 2604 | RuntimeError::RuntimeError(String const &msg) : Exception(msg) {} |
| 2605 | LogicError::LogicError(String const &msg) : Exception(msg) {} |
| 2606 | JSONCPP_NORETURN void throwRuntimeError(String const &msg) { |
| 2607 | throw RuntimeError(msg); |
| 2608 | } |
| 2609 | JSONCPP_NORETURN void throwLogicError(String const &msg) { |
| 2610 | throw LogicError(msg); |
| 2611 | } |
no outgoing calls
no test coverage detected