Exception: RubyChecker::NotSupportedError
- Inherits:
-
StandardError
- Object
- StandardError
- RubyChecker::NotSupportedError
- Defined in:
- lib/ruby_checker/errors.rb
Overview
NotSupportedError is raised when the current interpreter is detected to not be supported.
Instance Method Summary collapse
-
#initialize(interpreter) ⇒ NotSupportedError
constructor
A new instance of NotSupportedError.
Constructor Details
#initialize(interpreter) ⇒ NotSupportedError
41 42 43 |
# File 'lib/ruby_checker/errors.rb', line 41 def initialize(interpreter) super("Current interpreter is not supported. You should use '#{interpreter}' instead.") end |