Raised to indicate that a system exit should occur with the specified exit_code
[Source]
# File lib/rubygems/exceptions.rb, line 78 78: def initialize(exit_code) 79: @exit_code = exit_code 80: 81: super "Exiting RubyGems with exit_code #{exit_code}" 82: end
[Validate]