Method postConstructMethod = introspectionData.getPostConstructMethod();
if (postConstructMethod != null) {
invokeMethod(bean, postConstructMethod);
}
} catch (IllegalArgumentException e) {
throw new FacesException(e.getMessage(), e);
} catch (IllegalAccessException e) {
throw new FacesException(e.getMessage(), e);
} catch (InvocationTargetException e) {
throw new FacesException(e.getMessage(), e);
}
}