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

Returns a new instance of UnsupportedVCSError.



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

def initialize(vcs)
  @vcs = vcs
end

Instance Method Details

#messageObject



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

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