Exception: VericredClient::ApiError
- Inherits:
-
StandardError
- Object
- StandardError
- VericredClient::ApiError
- Defined in:
- lib/vericred_client/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
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 |
# File 'lib/vericred_client/api_error.rb', line 1021 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.
1014 1015 1016 |
# File 'lib/vericred_client/api_error.rb', line 1014 def code @code end |
#response_body ⇒ Object (readonly)
Returns the value of attribute response_body.
1014 1015 1016 |
# File 'lib/vericred_client/api_error.rb', line 1014 def response_body @response_body end |
#response_headers ⇒ Object (readonly)
Returns the value of attribute response_headers.
1014 1015 1016 |
# File 'lib/vericred_client/api_error.rb', line 1014 def response_headers @response_headers end |