MCPcopy Create free account
hub / github.com/Vector35/debugger / NotifyError

Method NotifyError

core/debuggercontroller.cpp:1295–1303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1293
1294
1295void DebuggerController::NotifyError(const std::string& error, const std::string& shortError, void* data)
1296{
1297 DebuggerEvent event;
1298 event.type = ErrorEventType;
1299 event.data.errorData.error = error;
1300 event.data.errorData.shortError = shortError;
1301 event.data.errorData.data = data;
1302 PostDebuggerEvent(event);
1303}
1304
1305
1306void DebuggerController::NotifyEvent(DebuggerEventType eventType)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected