| 2644 | RuntimeError::RuntimeError(String const& msg) : Exception(msg) {} |
| 2645 | LogicError::LogicError(String const& msg) : Exception(msg) {} |
| 2646 | JSONCPP_NORETURN void throwRuntimeError(String const& msg) { |
| 2647 | throw RuntimeError(msg); |
| 2648 | } |
| 2649 | JSONCPP_NORETURN void throwLogicError(String const& msg) { |
| 2650 | throw LogicError(msg); |
| 2651 | } |
no test coverage detected