class BehaviorTree::RegisterDSLNodeAlreadyExistsError

Exception for when trying to register a DSL keyword that already exists.

Public Class Methods

new(node_type) click to toggle source
Calls superclass method
# File lib/behavior_tree/errors.rb, line 61
def initialize(node_type)
  super "Cannot register node '#{node_type}', it already exists."
end