class Silo::UndefinedRemoteError

Raised when trying to access a remote by name that has no been defined for the repository

@author Sebastian Staudt @see Remote @since 0.1.0

Public Class Methods

new(name) click to toggle source

Creates an instance of UndefinedRemoteError for the given name

@param [String] name The name of the undefined remote

Calls superclass method
# File lib/silo/errors.rb, line 52
def initialize(name)
  super "No remote with name '#{name}' defined."
end