Exception: BehaviorTree::DSLStandardError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/behavior_tree/errors.rb

Overview

Exception for misuse of the DSL builder.

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ DSLStandardError

Returns a new instance of DSLStandardError.



54
55
56
# File 'lib/behavior_tree/errors.rb', line 54

def initialize(message)
  super "Cannot build tree (DSL Builder): #{message}"
end