class Uberinstaller::Exception::CommandNotProcessable

When a package as an unknown command ( is not a string nor an array )

Public Class Methods

new(name, type) click to toggle source
# File lib/uberinstaller/exceptions/command_not_processable.rb, line 7
def initialize(name, type)
  super "#{name}'s #{type} command is not proccessable, as it is of unknown type"
end