contentUtil.fillBean((OtherContent) this.getContent(), entity, id);
return entity;
} catch (IllegalArgumentException e) {
throw new RuntimeException("Invalid bean " + entityClass.getName(), e);
} catch (SAXException e) {
throw new FeedServerClientException(e);
} catch (ParserConfigurationException e) {
throw new RuntimeException("Invalid XML handler", e);
} catch (IntrospectionException e) {
throw new RuntimeException("Invalid bean " + entityClass.getName(), e);
} catch (IllegalAccessException e) {
throw new RuntimeException("Invalid bean " + entityClass.getName(), e);
} catch (InvocationTargetException e) {
throw new RuntimeException("Invalid bean " + entityClass.getName(), e);
} catch (InstantiationException e) {
throw new RuntimeException("Could not instantiate bean class" + entityClass.getName());
} catch (IOException e) {
throw new FeedServerClientException(e);
} catch (ParseException e) {
throw new FeedServerClientException(e);
}
}