Exception: Silo::UndefinedRemoteError
- Inherits:
-
StandardError
- Object
- StandardError
- Silo::UndefinedRemoteError
- Defined in:
- lib/silo/errors.rb
Overview
Raised when trying to access a remote by name that has no been defined for the repository
Instance Method Summary collapse
-
#initialize(name) ⇒ UndefinedRemoteError
constructor
Creates an instance of UndefinedRemoteError for the given name.
Constructor Details
#initialize(name) ⇒ UndefinedRemoteError
Creates an instance of UndefinedRemoteError for the given name
52 53 54 |
# File 'lib/silo/errors.rb', line 52 def initialize(name) super "No remote with name '#{name}' defined." end |