class RubyChecker::NotSupportedError

NotSupportedError is raised when the current interpreter is detected to not be supported.

Public Class Methods

new(interpreter) click to toggle source
Calls superclass method
# File lib/ruby_checker/errors.rb, line 41
def initialize(interpreter)
  super("Current interpreter is not supported. You should use '#{interpreter}' instead.")
end