Exception: PGit::Configuration::NotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/pgit/configuration/not_found_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(config_path) ⇒ NotFoundError

Returns a new instance of NotFoundError.



4
5
6
7
# File 'lib/pgit/configuration/not_found_error.rb', line 4

def initialize(config_path)
  @message = "#{config_path} configuration file does not exist. Please run `pgit install`"
  super(@message)
end