class Puppetserver::Ca::Error

Attributes

wrapped[R]

Public Class Methods

create(ex, msg) click to toggle source
# File lib/puppetserver/ca/errors.rb, line 4
def self.create(ex, msg)
  created = new(msg)
  created.wrap(ex)

  created
end

Public Instance Methods

wrap(ex) click to toggle source
# File lib/puppetserver/ca/errors.rb, line 13
def wrap(ex)
  @wrapped = ex
end