return ValueHolder.valueOf(wrapped);
} catch (NotesException e) {
log_.warning("NotesException: " + e.text);
if (e.text.contains("Could not evaluate formula:"))
return ValueHolder.valueOf(new EvaluateException(-1, -1, e));
return ValueHolder.valueOf(new RuntimeException(e));
}
}