Exception: Libv8::Location::System::NotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
ext/libv8/location.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ NotFoundError

Returns a new instance of NotFoundError.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'ext/libv8/location.rb', line 54

def initialize(*args)
  super(<<-EOS)
You have chosen to use the version of V8 found on your system
and *not* the one that is bundle with the libv8 rubygem. However,
it could not be located. please make sure you have a version of
v8 that is compatible with #{Libv8::VERSION} installed. You may
need to special --with-v8-dir options if it is in a non-standard
location

thanks,
The Mgmt

EOS
end