in src/main/java/org/apache/commons/dbutils/BeanProcessor.java [299:307]
protected <T> T newInstance(final Class<T> c) throws SQLException {
try {
return c.getDeclaredConstructor().newInstance();
} catch (final IllegalAccessException | InstantiationException | InvocationTargetException |
NoSuchMethodException e) {
throw new SQLException("Cannot create " + c.getName() + ": " + e.getMessage());
}
}