class SSLTool::ChainResolution::TooManyHeadsChainResolutionError

Attributes

domain_certs[R]

Public Class Methods

new(domain_certs) click to toggle source
Calls superclass method
# File lib/ssltool/chain_resolution.rb, line 14
def initialize(domain_certs)
  @domain_certs = domain_certs
  super("#{@domain_certs.length} certificates given cover domain names and could be used as the chain head.")
end