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.



60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'ext/libv8/location.rb', line 60

def initialize(*args)
  super(<<-EOS)
By using --with-system-v8, you have chosen to use the version 
of V8 found on your system and *not* the one that is bundled with 
the libv8 rubygem. 

However, your system version of v8 could not be located. 

Please make sure your system version of v8 that is compatible 
with #{Libv8::VERSION} installed. You may need to use the 
--with-v8-dir option if it is installed in a non-standard location
EOS
end