Exception: RubyChecker::RubyEngineNotAvailableError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/ruby_checker/errors.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initializeRubyEngineNotAvailableError

Returns a new instance of RubyEngineNotAvailableError.



32
33
34
35
# 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