class Puppet::SSL::CertVerifyError

Attributes

cert[R]
code[R]

Public Class Methods

new(message, code, cert) click to toggle source
Calls superclass method Puppet::Error::new
   # File lib/puppet/ssl/error.rb
 7 def initialize(message, code, cert)
 8   super(message)
 9   @code = code
10   @cert = cert
11 end