Exception: Bundler::Source::Git::MissingGitRevisionError
- Inherits:
-
GitCommandError
- Object
- StandardError
- BundlerError
- GitError
- GitCommandError
- Bundler::Source::Git::MissingGitRevisionError
- Defined in:
- lib/bundler/source/git/git_proxy.rb
Instance Attribute Summary
Attributes inherited from GitCommandError
Instance Method Summary collapse
-
#initialize(command, destination_path, ref, repo) ⇒ MissingGitRevisionError
constructor
A new instance of MissingGitRevisionError.
Methods inherited from BundlerError
Constructor Details
#initialize(command, destination_path, ref, repo) ⇒ MissingGitRevisionError
Returns a new instance of MissingGitRevisionError.
40 41 42 43 |
# File 'lib/bundler/source/git/git_proxy.rb', line 40 def initialize(command, destination_path, ref, repo) msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?" super command, destination_path, msg end |