Method: PDK::CLI::FatalError#initialize

Defined in:
lib/pdk/cli/errors.rb

#initialize(msg = 'An unexpected error has occurred. Try running the command again with --debug', opts = {}) ⇒ FatalError

Returns a new instance of FatalError.



8
9
10
11
# File 'lib/pdk/cli/errors.rb', line 8

def initialize(msg = 'An unexpected error has occurred. Try running the command again with --debug', opts = {})
  @exit_code = opts.fetch(:exit_code, 1)
  super(msg)
end