Exception: Flame::Errors::ArgumentNotAssignedError

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

Overview

Error for Flame::Dispatcher.path_to

Instance Method Summary collapse

Constructor Details

#initialize(path, argument) ⇒ ArgumentNotAssignedError

Create a new instance of error

Parameters:



11
12
13
14
15
# File 'lib/flame/errors/argument_not_assigned_error.rb', line 11

def initialize(path, argument)
  super(
    "Argument '#{argument}' for path '#{path}' is not assigned"
  )
end