class Angus::RequiredParameterNotFound

Attributes

not_found_parameters[RW]

Public Class Methods

new(not_found_parameters) click to toggle source
# File lib/angus/utils/exceptions/required_parameter_not_fond.rb, line 6
def initialize(not_found_parameters)
  @not_found_parameters = not_found_parameters
end

Public Instance Methods

error_key() click to toggle source
# File lib/angus/utils/exceptions/required_parameter_not_fond.rb, line 10
def error_key
  'TODO define'
end
message() click to toggle source
# File lib/angus/utils/exceptions/required_parameter_not_fond.rb, line 14
def message
  @not_found_parameters.map(&:name).join(', ')
end