We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5151f3 commit e6f241cCopy full SHA for e6f241c
src/action_node.cpp
@@ -138,7 +138,7 @@ NodeStatus StatefulActionNode::tick()
138
NodeStatus new_status = onStart();
139
if( new_status == NodeStatus::IDLE)
140
{
141
- throw std::logic_error("AsyncActionNode2::onStart() must not return IDLE");
+ throw std::logic_error("StatefulActionNode::onStart() must not return IDLE");
142
}
143
return new_status;
144
@@ -148,7 +148,7 @@ NodeStatus StatefulActionNode::tick()
148
NodeStatus new_status = onRunning();
149
150
151
- throw std::logic_error("AsyncActionNode2::onRunning() must not return IDLE");
+ throw std::logic_error("StatefulActionNode::onRunning() must not return IDLE");
152
153
154
0 commit comments