Exception: JSONAPI::Exceptions::InvalidFieldValue
- Defined in:
- lib/jsonapi/exceptions.rb
Instance Attribute Summary collapse
-
#field ⇒ Object
Returns the value of attribute field.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #errors ⇒ Object
-
#initialize(field, value) ⇒ InvalidFieldValue
constructor
A new instance of InvalidFieldValue.
Constructor Details
#initialize(field, value) ⇒ InvalidFieldValue
Returns a new instance of InvalidFieldValue.
180 181 182 183 |
# File 'lib/jsonapi/exceptions.rb', line 180 def initialize(field, value) @field = field @value = value end |
Instance Attribute Details
#field ⇒ Object
Returns the value of attribute field.
179 180 181 |
# File 'lib/jsonapi/exceptions.rb', line 179 def field @field end |
#value ⇒ Object
Returns the value of attribute value.
179 180 181 |
# File 'lib/jsonapi/exceptions.rb', line 179 def value @value end |
Instance Method Details
#errors ⇒ Object
185 186 187 188 189 190 191 192 193 |
# File 'lib/jsonapi/exceptions.rb', line 185 def errors [JSONAPI::Error.new(code: JSONAPI::INVALID_FIELD_VALUE, status: :bad_request, title: I18n.translate('jsonapi-resources.exceptions.invalid_field_value.title', default: 'Invalid field value'), detail: I18n.translate('jsonapi-resources.exceptions.invalid_field_value.detail', default: "#{value} is not a valid value for #{field}.", value: value, field: field))] end |