Exception: JSONAPI::Exceptions::TypeMismatch
- Defined in:
- lib/jsonapi/exceptions.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #errors ⇒ Object
-
#initialize(type) ⇒ TypeMismatch
constructor
A new instance of TypeMismatch.
Constructor Details
#initialize(type) ⇒ TypeMismatch
Returns a new instance of TypeMismatch.
220 221 222 |
# File 'lib/jsonapi/exceptions.rb', line 220 def initialize(type) @type = type end |
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
219 220 221 |
# File 'lib/jsonapi/exceptions.rb', line 219 def type @type end |
Instance Method Details
#errors ⇒ Object
224 225 226 227 228 229 230 231 |
# File 'lib/jsonapi/exceptions.rb', line 224 def errors [JSONAPI::Error.new(code: JSONAPI::TYPE_MISMATCH, status: :bad_request, title: I18n.translate('jsonapi-resources.exceptions.type_mismatch.title', default: 'Type Mismatch'), detail: I18n.translate('jsonapi-resources.exceptions.type_mismatch.detail', default: "#{type} is not a valid type for this operation.", type: type))] end |