class BehaviorTree::InvalidLeafNodeError

Exception for control nodes without children.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/behavior_tree/errors.rb, line 24
def initialize
  super 'This node cannot be a leaf node.'
end