Exception: OAS::Error::HTTP
- Inherits:
-
OAS::Error
- Object
- StandardError
- OAS::Error
- OAS::Error::HTTP
- Defined in:
- lib/oas/error.rb
Direct Known Subclasses
BadGateway, Forbidden, GatewayTimeout, InternalServerError, ServiceUnavailable
Defined Under Namespace
Classes: BadGateway, Forbidden, GatewayTimeout, InternalServerError, ServiceUnavailable
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
Instance Method Summary collapse
-
#initialize(code, headers, body) ⇒ HTTP
constructor
A new instance of HTTP.
Constructor Details
#initialize(code, headers, body) ⇒ HTTP
Returns a new instance of HTTP.
7 8 9 10 11 |
# File 'lib/oas/error.rb', line 7 def initialize(code, headers, body) @code = code @headers = headers @body = body end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
5 6 7 |
# File 'lib/oas/error.rb', line 5 def body @body end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
5 6 7 |
# File 'lib/oas/error.rb', line 5 def code @code end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
5 6 7 |
# File 'lib/oas/error.rb', line 5 def headers @headers end |