class RubyChecker::RubyEngineNotAvailableError

RubyEngineNotAvailableError is raised whenever RUBY_ENGINE is detected to not be available.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/ruby_checker/errors.rb, line 32
def initialize
  super("Apparently your Ruby interpreter does not define the 'RUBY_ENGINE' constant." \
        " This is not supported.")
end