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
 6 def initialize(message, code, cert)
 7   super(message)
 8   @code = code
 9   @cert = cert
10 end