| 2641 | Exception::Exception(String msg) : msg_(std::move(msg)) {} |
| 2642 | Exception::~Exception() noexcept = default; |
| 2643 | char const* Exception::what() const noexcept { return msg_.c_str(); } |
| 2644 | RuntimeError::RuntimeError(String const& msg) : Exception(msg) {} |
| 2645 | LogicError::LogicError(String const& msg) : Exception(msg) {} |
| 2646 | JSONCPP_NORETURN void throwRuntimeError(String const& msg) { |