Class Gem::SystemExitException
In: lib/rubygems/exceptions.rb
Parent: SystemExit

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

Methods

new  

Attributes

exit_code  [RW] 

Public Class methods

[Source]

    # File lib/rubygems/exceptions.rb, line 76
76:   def initialize(exit_code)
77:     @exit_code = exit_code
78: 
79:     super "Exiting RubyGems with exit_code #{exit_code}"
80:   end

[Validate]