| 203 | LogicError::LogicError(StringContainer const& msg) : Exception(msg) { |
| 204 | } |
| 205 | JSONCPP_NORETURN void throwRuntimeError(StringContainer const& msg) { |
| 206 | throw RuntimeError(msg); |
| 207 | } |
| 208 | JSONCPP_NORETURN void throwLogicError(StringContainer const& msg) { |
| 209 | throw LogicError(msg); |
| 210 | } |
no outgoing calls
no test coverage detected