Exception: Gem::SystemExitException

Inherits:
SystemExit
  • Object
show all
Defined in:
lib/rubygems/exceptions.rb

Overview

Raised to indicate that a system exit should occur with the specified exit_code

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exit_code) ⇒ SystemExitException

Creates a new SystemExitException with the given exit_code



228
229
230
231
232
# File 'lib/rubygems/exceptions.rb', line 228

def initialize(exit_code)
  @exit_code = exit_code

  super "Exiting RubyGems with exit_code #{exit_code}"
end

Instance Attribute Details

#exit_codeObject

The exit code for the process



223
224
225
# File 'lib/rubygems/exceptions.rb', line 223

def exit_code
  @exit_code
end