class BehaviorTree::DSLStandardError

Exception for misuse of the DSL builder.

Public Class Methods

new(message) click to toggle source
Calls superclass method
# File lib/behavior_tree/errors.rb, line 54
def initialize(message)
  super "Cannot build tree (DSL Builder): #{message}"
end