Exception: VersionManager::VCS::UnsupportedVCSError
- Inherits:
-
StandardError
- Object
- StandardError
- VersionManager::VCS::UnsupportedVCSError
- Defined in:
- lib/version-manager/vcs.rb
Instance Method Summary collapse
-
#initialize(vcs) ⇒ UnsupportedVCSError
constructor
A new instance of UnsupportedVCSError.
- #message ⇒ Object
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
#message ⇒ Object
18 19 20 |
# File 'lib/version-manager/vcs.rb', line 18 def "VCS #{vcs} has not been supported yet" end |