MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / raised_exception

Class raised_exception

subprojects/llama.cpp/common/jinja/runtime.h:565–571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

563};
564
565struct raised_exception : public std::exception {
566 std::string message;
567 raised_exception(const std::string & msg) : message(msg) {}
568 const char* what() const noexcept override {
569 return message.c_str();
570 }
571};
572
573// Used to rethrow exceptions with modified messages
574struct rethrown_exception : public std::exception {

Callers 3

get_posMethod · 0.85
selectattrFunction · 0.85
value.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected