class RestClient::SSLCertificateNotVerified

Public Class Methods

new(message = 'SSL certificate not verified') click to toggle source
Calls superclass method RestClient::Exception::new
# File lib/restclient/exceptions.rb, line 239
def initialize(message = 'SSL certificate not verified')
  super nil, nil
  self.message = message
end