Exception: Translatomatic::HTTP::Exception
- Inherits:
-
StandardError
- Object
- StandardError
- Translatomatic::HTTP::Exception
- Defined in:
- lib/translatomatic/http/exception.rb
Overview
Exception used for unexpected http responses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ Exception
constructor
A new instance of Exception.
-
#to_s ⇒ Object
Exception string.
Constructor Details
#initialize(response) ⇒ Exception
Returns a new instance of Exception.
7 8 9 |
# File 'lib/translatomatic/http/exception.rb', line 7 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/translatomatic/http/exception.rb', line 5 def response @response end |
Instance Method Details
#to_s ⇒ Object
Exception string
12 13 14 |
# File 'lib/translatomatic/http/exception.rb', line 12 def to_s error_from_response(@response) || default_error end |