+ " on class " + className, e);
}
Iterator<LifecycleCallbackDescriptor> aiIterator = orderedAIInterceptors.iterator();
while (aiIterator.hasNext()) {
LifecycleCallbackDescriptor aroundInvokeDesc = aiIterator.next();
Method method = null;
try {
method = aroundInvokeDesc.getLifecycleCallbackMethodObject(loader);
} catch(Exception e) {
throw new IllegalStateException("No callback method of name " +
aroundInvokeDesc.getLifecycleCallbackMethod()
+ " found on class " + className, e);
}
if (interceptor.getFromBeanClass()) {
interceptors.add(new BeanAroundInvokeInterceptor(method));