Fixed type with exception re-throwing.

This commit is contained in:
JesseBrault0709 2024-06-03 22:00:15 +02:00
parent d1d0a4c65a
commit b8e88a3dbe

View File

@ -337,7 +337,7 @@ public abstract class AbstractInjectingObjectFactory implements ObjectFactory {
deferredSetterActions.forEach(setterAction -> setterAction.accept(instance));
return instance;
} catch (InvocationTargetException | IllegalAccessException | InstantiationException e) {
throw new RuntimeException("e");
throw new RuntimeException(e);
}
}