MCPcopy Create free account
hub / github.com/WasmVM/WasmVM / Exception

Class Exception

src/include/exception.hpp:16–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace Exception{
15
16 struct Exception : public std::runtime_error {
17 Exception(std::string msg) : std::runtime_error(msg) {}
18 };
19
20 struct Parse : public Exception {
21 Parse(std::string msg, std::pair<size_t, size_t> location) : Exception(msg), location(location) {}

Callers 15

init_tableFunction · 0.85
eval_offsetFunction · 0.85
instanciate.cppFile · 0.85
json.cppFile · 0.85
runMethod · 0.85
StackValue>Method · 0.85
popMethod · 0.85
CtrlFrame>Method · 0.85
data.cppFile · 0.85
export.cppFile · 0.85
table.cppFile · 0.85
mem.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected