class Flame::Errors::ArgumentNotAssignedError

Error for Flame::Dispatcher.path_to

Public Class Methods

new(path, argument) click to toggle source
# File lib/flame/errors/argument_not_assigned_error.rb, line 7
def initialize(path, argument)
        @path = path
        @argument = argument
end

Public Instance Methods

message() click to toggle source
# File lib/flame/errors/argument_not_assigned_error.rb, line 12
def message
        "Argument '#{@argument}' for path '#{@path}' is not assigned"
end