throw new Exception("Could not find property converter for field " + propertyName
+ " in " + name);
}
Object converted=null;
try {
converted=propertyConverter.convert((Protocol)obj, method.getParameterTypes()[0], props, prop);
method.invoke(obj, converted);
}
catch(Exception e) {
String name=obj instanceof Protocol? ((Protocol)obj).getName() : obj.getClass().getName();
throw new Exception("Could not assign property " + propertyName + " in "