class SSLTool::KeyHelper::KeyNotFoundError

Attributes

cert[R]
keys[R]

Public Class Methods

new(cert, keys) click to toggle source
Calls superclass method
# File lib/ssltool/key_helper.rb, line 17
def initialize(cert, keys)
  @cert, @keys = cert, keys
  super("None of the given #{keys.length} keys match the certificate #{cert.subject}.")
end