class Uberinstaller::Exception::Exception

Attributes

parent[R]

Public Class Methods

new(parent, print = true) click to toggle source
Calls superclass method
# File lib/uberinstaller/exception.rb, line 11
def initialize(parent, print = true)
  @parent = parent
  logger.fatal parent if print
  super parent
end