Exception: Apcera::ApiError
- Inherits:
-
StandardError
- Object
- StandardError
- Apcera::ApiError
- Defined in:
- lib/apcera/api_error.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#response_body ⇒ Object
readonly
Returns the value of attribute response_body.
-
#response_headers ⇒ Object
readonly
Returns the value of attribute response_headers.
Instance Method Summary collapse
-
#initialize(arg = nil) ⇒ ApiError
constructor
Usage examples: ApiError.new ApiError.new(“message”) ApiError.new(:code => 500, :response_headers => {}, :response_body => “”) ApiError.new(:code => 404, :message => “Not Found”).
Constructor Details
#initialize(arg = nil) ⇒ ApiError
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/apcera/api_error.rb', line 10 def initialize(arg = nil) if arg.is_a? Hash arg.each do |k, v| if k.to_s == 'message' super v else instance_variable_set "@#{k}", v end end else super arg end end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
3 4 5 |
# File 'lib/apcera/api_error.rb', line 3 def code @code end |
#response_body ⇒ Object (readonly)
Returns the value of attribute response_body.
3 4 5 |
# File 'lib/apcera/api_error.rb', line 3 def response_body @response_body end |
#response_headers ⇒ Object (readonly)
Returns the value of attribute response_headers.
3 4 5 |
# File 'lib/apcera/api_error.rb', line 3 def response_headers @response_headers end |