Exception: RubyChecker::NotSupportedError

Inherits:
StandardError
  • Object
show all
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

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