Exception: YNAB::ApiError
- Inherits:
-
StandardError
- Object
- StandardError
- YNAB::ApiError
- Defined in:
- lib/ynab/api_error.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#response_body ⇒ Object
Returns the value of attribute response_body.
-
#response_headers ⇒ Object
readonly
Returns the value of attribute response_headers.
Instance Method Summary collapse
- #detail ⇒ Object
- #id ⇒ Object
-
#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”).
- #name ⇒ Object
Constructor Details
#initialize(arg = nil) ⇒ ApiError
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/ynab/api_error.rb', line 10 def initialize(arg = nil) if arg.is_a? Hash if arg.key?(:message) || arg.key?('message') super(arg[:message] || arg['message']) else super arg end arg.each do |key, value| if respond_to?("#{key}=") send "#{key}=", value else instance_variable_set "@#{key}", value end end else super arg end end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
3 4 5 |
# File 'lib/ynab/api_error.rb', line 3 def code @code end |
#response_body ⇒ Object
Returns the value of attribute response_body.
3 4 5 |
# File 'lib/ynab/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/ynab/api_error.rb', line 3 def response_headers @response_headers end |
Instance Method Details
#detail ⇒ Object
48 49 50 |
# File 'lib/ynab/api_error.rb', line 48 def detail (@error_parsed || {}).fetch('error', {})['detail'] end |
#id ⇒ Object
40 41 42 |
# File 'lib/ynab/api_error.rb', line 40 def id (@error_parsed || {}).fetch('error', {})['id'] end |
#name ⇒ Object
44 45 46 |
# File 'lib/ynab/api_error.rb', line 44 def name (@error_parsed || {}).fetch('error', {})['name'] end |