Exception: JSONAPI::Exceptions::InvalidFilterValue

Inherits:
Error
  • Object
show all
Defined in:
lib/jsonapi/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filter, value) ⇒ InvalidFilterValue

Returns a new instance of InvalidFilterValue.



49
50
51
52
# File 'lib/jsonapi/exceptions.rb', line 49

def initialize(filter, value)
  @filter = filter
  @value = value
end

Instance Attribute Details

#filterObject

Returns the value of attribute filter.



48
49
50
# File 'lib/jsonapi/exceptions.rb', line 48

def filter
  @filter
end

#valueObject

Returns the value of attribute value.



48
49
50
# File 'lib/jsonapi/exceptions.rb', line 48

def value
  @value
end

Instance Method Details

#errorsObject



54
55
56
57
58
59
# File 'lib/jsonapi/exceptions.rb', line 54

def errors
  [JSONAPI::Error.new(code: JSONAPI::INVALID_FILTER_VALUE,
                       status: :bad_request,
                       title: 'Invalid filter value',
                       detail: "#{value} is not a valid value for #{filter}.")]
end