Exception: Yoker::UnsupportedVersionManagerError
- Inherits:
-
InvalidConfigurationError
- Object
- StandardError
- Error
- InvalidConfigurationError
- Yoker::UnsupportedVersionManagerError
- Defined in:
- lib/yoker/errors.rb
Overview
Raised when unsupported version manager is specified
Instance Method Summary collapse
-
#initialize(manager) ⇒ UnsupportedVersionManagerError
constructor
A new instance of UnsupportedVersionManagerError.
Constructor Details
#initialize(manager) ⇒ UnsupportedVersionManagerError
Returns a new instance of UnsupportedVersionManagerError.
63 64 65 66 |
# File 'lib/yoker/errors.rb', line 63 def initialize(manager) supported = %w[mise rbenv rvm none] super("Version manager '#{manager}' is not supported. Supported: #{supported.join(", ")}") end |