Method: LibGems::SystemExitException#initialize

Defined in:
lib/libgems/exceptions.rb

#initialize(exit_code) ⇒ SystemExitException

Returns a new instance of SystemExitException.



85
86
87
88
89
# File 'lib/libgems/exceptions.rb', line 85

def initialize(exit_code)
  @exit_code = exit_code

  super "Exiting #{LibGems::NAME} with exit_code #{exit_code}"
end