String[] strRep = new String[len];
for (int i = 0; i < len; i++) {
strRep[i] = (String) v.get(i);
}
// we've filled strRep, we now attach it to the event
event.setThrowableInformation(new ThrowableInformation(strRep));
} finally {
if (statement != null) {
statement.close();
}
}