Exception: RESTFramework::Errors::NilPassedToAPIResponseError

Inherits:
BaseError
  • Object
show all
Defined in:
lib/rest_framework/errors/nil_passed_to_api_response_error.rb

Instance Method Summary collapse

Instance Method Details

#messageObject



2
3
4
5
6
7
8
9
10
# File 'lib/rest_framework/errors/nil_passed_to_api_response_error.rb', line 2

def message
  return <<~MSG.split("\n").join(" ")
    Payload of `nil` was passed to `api_response`; this is unsupported. If you want a blank
    response, pass `''` (an empty string) as the payload. If this was the result of a `find_by`
    (or similar Active Record method) not finding a record, you should use the bang version (e.g.,
    `find_by!`) to raise `ActiveRecord::RecordNotFound`, which the REST controller will catch and
    return an appropriate error response.
  MSG
end