Exception: Traject::SolrJsonWriter::BadHttpResponse
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Traject::SolrJsonWriter::BadHttpResponse
- Defined in:
- lib/traject/solr_json_writer.rb
Overview
Adapted from HTTPClient::BadResponseError. It's got a #response accessor that will give you the HTTPClient Response object that had a bad status, although relying on that would tie you to our HTTPClient implementation that maybe should be considered an implementation detail, so I dunno.
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
HTTP::Message:: a response.
Instance Method Summary collapse
-
#initialize(msg, response = nil) ⇒ BadHttpResponse
constructor
:nodoc:.
Constructor Details
#initialize(msg, response = nil) ⇒ BadHttpResponse
:nodoc:
415 416 417 418 |
# File 'lib/traject/solr_json_writer.rb', line 415 def initialize(msg, response = nil) # :nodoc: super(msg) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
HTTP::Message:: a response
413 414 415 |
# File 'lib/traject/solr_json_writer.rb', line 413 def response @response end |