| 206 | RuntimeError::RuntimeError(String const& msg) : Exception(msg) {} |
| 207 | LogicError::LogicError(String const& msg) : Exception(msg) {} |
| 208 | JSONCPP_NORETURN void throwRuntimeError(String const& msg) { |
| 209 | throw RuntimeError(msg); |
| 210 | } |
| 211 | JSONCPP_NORETURN void throwLogicError(String const& msg) { |
| 212 | throw LogicError(msg); |
| 213 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…