// WELD-1742 Associate bean constructor interceptor bindings
invocationCtx.getContextData().put(InterceptorMethodHandler.INTERCEPTOR_BINDINGS_KEY, model.getMemberInterceptorBindings(getConstructor()));
try {
chain.invokeNextInterceptor(invocationCtx);
} catch (RuntimeException e) {
throw e;
} catch (Throwable e) {
throw new WeldException(e);
}