123456789_123456789_123456789_123456789_123456789_

Exception: Bundler::BundlerError

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, StandardError
Instance Chain:
self, StandardError
Inherits: StandardError
  • Object
Defined in: lib/bundler/errors.rb

Class Method Summary

Class Method Details

.all_errors

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 15

def self.all_errors
  @all_errors ||= {}
end

.status_code(code)

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 5

def self.status_code(code)
  define_method(:status_code) { code }
  if match = BundlerError.all_errors.find {|_k, v| v == code }
    error, _ = match
    raise ArgumentError,
      "Trying to register #{self} for status code #{code} but #{error} is already registered"
  end
  BundlerError.all_errors[self] = code
end