Class: ZendeskAPI::Error::RecordInvalid
- Inherits:
-
ClientError
- Object
- Faraday::Error::ClientError
- ClientError
- ZendeskAPI::Error::RecordInvalid
- Defined in:
- lib/zendesk_api/error.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize ⇒ RecordInvalid
constructor
A new instance of RecordInvalid.
- #to_s ⇒ Object
Constructor Details
#initialize ⇒ RecordInvalid
Returns a new instance of RecordInvalid
19 20 21 22 23 24 25 26 27 |
# File 'lib/zendesk_api/error.rb', line 19 def initialize(*) super if response[:body].is_a?(Hash) @errors = response[:body]["details"] || response[:body]["description"] end @errors ||= {} end |
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors
17 18 19 |
# File 'lib/zendesk_api/error.rb', line 17 def errors @errors end |
Instance Method Details
#to_s ⇒ Object
29 30 31 |
# File 'lib/zendesk_api/error.rb', line 29 def to_s "#{self.class.name}: #{@errors}" end |