Exception: Mobitex::ConnectionError
- Inherits:
-
StandardError
- Object
- StandardError
- Mobitex::ConnectionError
- Defined in:
- lib/mobitex/connection_errors.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, message = nil) ⇒ ConnectionError
constructor
A new instance of ConnectionError.
- #to_s ⇒ Object
Constructor Details
#initialize(response, message = nil) ⇒ ConnectionError
Returns a new instance of ConnectionError.
6 7 8 9 |
# File 'lib/mobitex/connection_errors.rb', line 6 def initialize(response, = nil) @response = response @message = end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/mobitex/connection_errors.rb', line 4 def response @response end |
Instance Method Details
#to_s ⇒ Object
11 12 13 14 15 16 |
# File 'lib/mobitex/connection_errors.rb', line 11 def to_s = "Connection Failed." << " Response Code = #{response.code}." if response.respond_to?(:code) << " Response Message = #{response.}." if response.respond_to?(:message) end |