Exception: JSONAPI::Exceptions::InvalidFieldValue

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field, value) ⇒ InvalidFieldValue

Returns a new instance of InvalidFieldValue.



101
102
103
104
# File 'lib/jsonapi/exceptions.rb', line 101

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

Instance Attribute Details

#fieldObject

Returns the value of attribute field.



100
101
102
# File 'lib/jsonapi/exceptions.rb', line 100

def field
  @field
end

#valueObject

Returns the value of attribute value.



100
101
102
# File 'lib/jsonapi/exceptions.rb', line 100

def value
  @value
end

Instance Method Details

#errorsObject



106
107
108
109
110
111
# File 'lib/jsonapi/exceptions.rb', line 106

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