Exception: JSONAPI::Exceptions::InvalidFilterValue
- Defined in:
- lib/jsonapi/exceptions.rb
Instance Attribute Summary collapse
-
#filter ⇒ Object
Returns the value of attribute filter.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #errors ⇒ Object
-
#initialize(filter, value) ⇒ InvalidFilterValue
constructor
A new instance of InvalidFilterValue.
Constructor Details
#initialize(filter, value) ⇒ InvalidFilterValue
Returns a new instance of InvalidFilterValue.
162 163 164 165 |
# File 'lib/jsonapi/exceptions.rb', line 162 def initialize(filter, value) @filter = filter @value = value end |
Instance Attribute Details
#filter ⇒ Object
Returns the value of attribute filter.
161 162 163 |
# File 'lib/jsonapi/exceptions.rb', line 161 def filter @filter end |
#value ⇒ Object
Returns the value of attribute value.
161 162 163 |
# File 'lib/jsonapi/exceptions.rb', line 161 def value @value end |
Instance Method Details
#errors ⇒ Object
167 168 169 170 171 172 173 174 175 |
# File 'lib/jsonapi/exceptions.rb', line 167 def errors [JSONAPI::Error.new(code: JSONAPI::INVALID_FILTER_VALUE, status: :bad_request, title: I18n.translate('jsonapi-resources.exceptions.invalid_filter_value.title', default: 'Invalid filter value'), detail: I18n.translate('jsonapi-resources.exceptions.invalid_filter_value.detail', default: "#{value} is not a valid value for #{filter}.", value: value, filter: filter))] end |