MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / RuntimeError

Class RuntimeError

include/behaviortree_cpp/exceptions.h:60–69  ·  view source on GitHub ↗

This errors are usually related to problems that are relted to data or conditions that happen only at run-time

Source from the content-addressed store, hash-verified

58// This errors are usually related to problems that are relted to data or conditions
59// that happen only at run-time
60class RuntimeError : public BehaviorTreeException
61{
62public:
63 RuntimeError(std::string_view message) : BehaviorTreeException(message)
64 {}
65
66 template <typename... SV>
67 RuntimeError(const SV&... args) : BehaviorTreeException(args...)
68 {}
69};
70
71/// Information about a node in the tick backtrace.
72struct TickBacktraceEntry

Callers 15

setStatusMethod · 0.85
loadMethod · 0.85
ConvertWithBoundCheckFunction · 0.85
convertFromString<float>Function · 0.85
convertFromString<bool>Function · 0.85
validateModelNameFunction · 0.85
validatePortNameFunction · 0.85

Calls

no outgoing calls

Tested by 13

TestNodeMethod · 0.68
tickMethod · 0.68
tickMethod · 0.68
convertFromStringFunction · 0.68
tickMethod · 0.68
ReadInConstructorMethod · 0.68
tickMethod · 0.68
tickMethod · 0.68
convertFromStringFunction · 0.68
tickMethod · 0.68
throwRuntimeErrorFunction · 0.68