Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rubygems/exceptions.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Gem::SystemExitException

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

Attributes

exit_code[RW]

Public Class Methods

new(exit_code) click to toggle source
 
               # File rubygems/exceptions.rb, line 102
def initialize(exit_code)
  @exit_code = exit_code

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