Exception: Inprovise::MissingActionError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/inprovise/execution_context.rb

Instance Method Summary collapse

Constructor Details

#initialize(action_ref) ⇒ MissingActionError



230
231
232
# File 'lib/inprovise/execution_context.rb', line 230

def initialize(action_ref)
  @action_ref = action_ref
end

Instance Method Details

#messageObject



234
235
236
# File 'lib/inprovise/execution_context.rb', line 234

def message
  "Action '#{@action_ref}' could not be found."
end