Exception: Bundler::Source::Git::MissingGitRevisionError

Inherits:
GitError show all
Defined in:
lib/bundler/source/git/git_proxy.rb

Instance Method Summary collapse

Methods inherited from BundlerError

all_errors, status_code

Constructor Details

#initialize(ref, repo) ⇒ MissingGitRevisionError

Returns a new instance of MissingGitRevisionError.



38
39
40
41
# File 'lib/bundler/source/git/git_proxy.rb', line 38

def initialize(ref, repo)
  msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
  super msg
end