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