MCPcopy Create free account
hub / github.com/Kitware/CMake / throwRuntimeError

Function throwRuntimeError

Utilities/cmjsoncpp/src/lib_json/json_value.cpp:208–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206RuntimeError::RuntimeError(String const& msg) : Exception(msg) {}
207LogicError::LogicError(String const& msg) : Exception(msg) {}
208JSONCPP_NORETURN void throwRuntimeError(String const& msg) {
209 throw RuntimeError(msg);
210}
211JSONCPP_NORETURN void throwLogicError(String const& msg) {
212 throw LogicError(msg);
213}

Callers 6

readValueMethod · 0.85
readObjectMethod · 0.85
json_reader.cppFile · 0.85
newStreamWriterMethod · 0.85
duplicateStringValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…