Exception: Nestful::SSLError

Inherits:
ConnectionError show all
Defined in:
lib/nestful/exceptions.rb

Overview

Raised when a OpenSSL::SSL::SSLError occurs.

Instance Attribute Summary

Attributes inherited from ConnectionError

#response

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ SSLError

Returns a new instance of SSLError.



29
30
31
# File 'lib/nestful/exceptions.rb', line 29

def initialize(message)
  @message = message
end

Instance Method Details

#to_sObject



32
# File 'lib/nestful/exceptions.rb', line 32

def to_s; @message ;end