class FunWithJsonApi::Exceptions::InvalidDocumentType
A server MUST return 409 Conflict when processing a POST request in which the resource object’s type is not among the type(s) that constitute the collection represented by the endpoint.
Constants
- EXCEPTION_CODE
Public Class Methods
new(message, payload = ExceptionPayload.new)
click to toggle source
Calls superclass method
FunWithJsonApi::Exception::new
# File lib/fun_with_json_api/exceptions/invalid_document_type.rb, line 9 def initialize(message, payload = ExceptionPayload.new) payload = Array.wrap(payload).each do |invalid| invalid.code ||= EXCEPTION_CODE invalid.title ||= I18n.t(EXCEPTION_CODE, scope: 'fun_with_json_api.exceptions') invalid.status ||= '409' invalid.pointer ||= '/data/type' end super end