* It's possible to remove Truffle classes from the JRuby distribution, so we provide a sensible
* explanation when the classes are not found.
*/
try {
truffleBridge = new TruffleBridgeImpl(this);
truffleBridge.init();
} catch (NoClassDefFoundError e) {
throw new UnsupportedOperationException("Support for Truffle has been removed from this distribution", e);
}
}