703704705706707708709710711712713
throws ConfigException { try { ConfigType type = TypeFactory.getType(bean.getClass()); type.inject(bean); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw ConfigException.create(e); }