*/
@SuppressWarnings ( { "ThrowableResultOfMethodCallIgnored" })
public static void raiseException(final Object jsError) {
GWT.UncaughtExceptionHandler uncaughtExceptionHandler = GWT.getUncaughtExceptionHandler();
if (uncaughtExceptionHandler == null) {
throw new JavaScriptException(jsError);
}
uncaughtExceptionHandler.onUncaughtException(createException(jsError));
}