Exception: NATS::JetStream::Error::BadRequest
- Inherits:
-
APIError
- Object
- StandardError
- IO::Error
- NATS::JetStream::Error
- APIError
- NATS::JetStream::Error::BadRequest
- Defined in:
- lib/nats/io/jetstream/errors.rb
Overview
When the JetStream client makes an invalid request. This condition is represented with a message that has 400 status code header.
Instance Attribute Summary
Attributes inherited from APIError
#code, #consumer, #description, #err_code, #seq, #stream
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ BadRequest
constructor
A new instance of BadRequest.
Methods inherited from APIError
Constructor Details
#initialize(params = {}) ⇒ BadRequest
Returns a new instance of BadRequest.
113 114 115 116 |
# File 'lib/nats/io/jetstream/errors.rb', line 113 def initialize(params = {}) super @code ||= 400 end |