Exception: PDK::CLI::ExitWithError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/pdk/cli/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, exit_code = 1) ⇒ ExitWithError

Returns a new instance of ExitWithError.



15
16
17
18
# File 'lib/pdk/cli/errors.rb', line 15

def initialize(msg, exit_code = 1)
  @exit_code = exit_code
  super(msg)
end

Instance Attribute Details

#exit_codeObject (readonly)

Returns the value of attribute exit_code.



13
14
15
# File 'lib/pdk/cli/errors.rb', line 13

def exit_code
  @exit_code
end