| 2601 | Exception::Exception(String msg) : msg_(std::move(msg)) {} |
| 2602 | Exception::~Exception() JSONCPP_NOEXCEPT {} |
| 2603 | char const *Exception::what() const JSONCPP_NOEXCEPT { return msg_.c_str(); } |
| 2604 | RuntimeError::RuntimeError(String const &msg) : Exception(msg) {} |
| 2605 | LogicError::LogicError(String const &msg) : Exception(msg) {} |
| 2606 | JSONCPP_NORETURN void throwRuntimeError(String const &msg) { |