Sha256: 68de7c22b9d9735f37c53abfb7a770d20fe2274089d2bf482fd683cc8f69d215

Contents?: true

Size: 255 Bytes

Versions: 1

Compression:

Stored size: 255 Bytes

Contents

module PGit
  class Configuration
    class NotFoundError < PGit::Error
      def initialize(config_path)
        @message = "#{config_path} configuration file does not exist. Please run `pgit install`"
        super(@message)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pgit-0.0.4 lib/pgit/configuration/not_found_error.rb