T targetObject;
try {
targetObject = this.requiredType.newInstance();
return this.tranResultSet(rs, targetObject);
} catch (InstantiationException e) {
throw new UnhandledException(e);
} catch (IllegalAccessException e) {
throw new UnhandledException(e);
}
}