Exception: VersionManager::VCS::UnsupportedVCSError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/version-manager/vcs.rb

Instance Method Summary collapse

Constructor Details

#initialize(vcs) ⇒ UnsupportedVCSError



15
16
17
# File 'lib/version-manager/vcs.rb', line 15

def initialize(vcs)
  @vcs = vcs
end

Instance Method Details

#messageObject



19
20
21
# File 'lib/version-manager/vcs.rb', line 19

def message
  "VCS #{vcs} has not been supported yet"
end