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

Class LogicError

include/behaviortree_cpp/exceptions.h:47–56  ·  view source on GitHub ↗

This errors are usually related to problems which "probably" require code refactoring to be fixed.

Source from the content-addressed store, hash-verified

45// This errors are usually related to problems which "probably" require code refactoring
46// to be fixed.
47class LogicError : public BehaviorTreeException
48{
49public:
50 LogicError(std::string_view message) : BehaviorTreeException(message)
51 {}
52
53 template <typename... SV>
54 LogicError(const SV&... args) : BehaviorTreeException(args...)
55 {}
56};
57
58// This errors are usually related to problems that are relted to data or conditions
59// that happen only at run-time

Callers 15

applyRecursiveVisitorFunction · 0.85
createNodeFromXMLMethod · 0.85
createEntryMethod · 0.85
createEntryImplMethod · 0.85
unregisterBuilderMethod · 0.85
instantiateTreeNodeMethod · 0.85
registerScriptingEnumMethod · 0.85
executeTickMethod · 0.85
tickMethod · 0.85
EntryUpdatedActionMethod · 0.85
tickMethod · 0.85
tickMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected