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.



63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'ext/libv8/location.rb', line 63

def initialize(*args)
  super("By using --with-system-v8, you have chosen to use the version\nof V8 found on your system and *not* the one that is bundled with\nthe libv8 rubygem.\n\nHowever, your system version of v8 could not be located.\n\nPlease make sure your system version of v8 that is compatible\nwith \#{Libv8::VERSION} installed. You may need to use the\n--with-v8-dir option if it is installed in a non-standard location\n")
end