class HTTPClient::JRubySSLSocket::SSLStoreContext

Attributes

chain[R]
current_cert[R]
error[R]
error_depth[R]
error_string[R]

Public Class Methods

new(current_cert, chain, error_depth, error, error_string) click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 175
def initialize(current_cert, chain, error_depth, error, error_string)
  @current_cert, @chain, @error_depth, @error, @error_string =
    current_cert, chain, error_depth, error, error_string
end