String msg = "Exception attempting invoke lifecycle "
+ " method " + lifecycleMethod;
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.log(Level.FINE, msg, t);
}
InjectionException ie = new InjectionException(msg);
Throwable cause = (t instanceof InvocationTargetException) ?
t.getCause() : t;
ie.initCause( cause );
throw ie;
}
return;