Exception: Flame::Errors::ArgumentNotAssignedError
- Inherits:
-
StandardError
- Object
- StandardError
- Flame::Errors::ArgumentNotAssignedError
- Defined in:
- lib/flame/errors/argument_not_assigned_error.rb
Overview
Error for Flame::Dispatcher.path_to
Instance Method Summary collapse
-
#initialize(path, argument) ⇒ ArgumentNotAssignedError
constructor
Create a new instance of error.
Constructor Details
#initialize(path, argument) ⇒ ArgumentNotAssignedError
Create a new instance of error
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 |