This exception is raised when there is an SSL verification error when communicating with the forge.
@option options [String] :uri The URI that failed @option options [String] :original the original exception
# File lib/puppet/forge/errors.rb, line 22 def initialize(options) @uri = options[:uri] original = options[:original] super("Unable to verify the SSL certificate at #{@uri}", original) end
Return a multiline version of the error message
@return [String] the multiline version of the error message
# File lib/puppet/forge/errors.rb, line 32 def multiline message = "Could not connect via HTTPS to #{@uri} Unable to verify the SSL certificate The certificate may not be signed by a valid CA The CA bundle included with OpenSSL may not be valid or up to date ".chomp end