Exception: Paggi::PaggiError
- Inherits:
-
StandardError
- Object
- StandardError
- Paggi::PaggiError
- Defined in:
- lib/paggi/error.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize(body = nil) ⇒ PaggiError
constructor
A new instance of PaggiError.
- #to_s ⇒ Object
Constructor Details
#initialize(body = nil) ⇒ PaggiError
Returns a new instance of PaggiError.
4 5 6 |
# File 'lib/paggi/error.rb', line 4 def initialize(body = nil) @errors = body.nil? || body['errors'].nil? ? [] : body['errors'].map{ |error| symbolize_keys(error) } end |
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors.
3 4 5 |
# File 'lib/paggi/error.rb', line 3 def errors @errors end |
Instance Method Details
#to_s ⇒ Object
8 9 10 |
# File 'lib/paggi/error.rb', line 8 def to_s @errors.map{ |e| e[:param].nil? ? e[:message] : "#{e[:param]}: #{e[:message]}" }.join(', ') end |