Constructor<?> constructor = beanClass.getConstructor();
Object initargs[] = null;
ConstructionInvocation invocation = new ConstructionInvocation(interceptors, constructor, initargs);
invocation.setAdvisor(this.getAdvisor());
invocation.setTargetObject(enterpriseBeanContext.getInstance());
invocation.invokeNext();
}
catch(Throwable t)
{
throw new RuntimeException(t);
}