Exception: Regrit::InvalidRefsFormat

Inherits:
Inaccessible show all
Defined in:
lib/regrit/errors.rb

Overview

Raised when the Refs format is unrecognized

Instance Method Summary collapse

Constructor Details

#initialize(raw_refs) ⇒ InvalidRefsFormat

Returns a new instance of InvalidRefsFormat.



50
51
52
53
54
55
# File 'lib/regrit/errors.rb', line 50

def initialize(raw_refs)
  super <<-ERROR
Invalid git refs format:
#{raw_refs}
  ERROR
end