# File lib/bundler/safe_catch.rb, line 36
    def safe_throw(tag, value = nil)
      if Bundler.current_ruby.jruby?
        Internal.throw(tag, value)
      else
        throw(tag, value)
      end
    end