class Gem::SystemExitException
抛出此异常表示应该使用指定的 exit_code 退出系统
公共类方法
new(exit_code) 点击切换源代码
使用给定的 exit_code
创建一个新的 SystemExitException
调用父类方法
# File rubygems/exceptions.rb, line 239 def initialize(exit_code) super exit_code, "Exiting RubyGems with exit_code #{exit_code}" end