341342343344345346347348349
{ return PersistentFieldFactory.createPersistentField(fieldType, aFieldName); } catch (Exception e) { throw new MetadataException("Cannot create PersistentField for field '" + aFieldName + "' of class " + fieldType.getName(), e); } }
616263646566676869
return pf; } catch (Exception ex) { throw new MetadataException("Error creating PersistentField: " + attributeType.getName() + ", " + attributeName, ex); } }
447448449450451452453454
// [tomdz] There seems to be no use of this setting ? //properties.put("valid", "false"); } catch (Exception ex) { throw new MetadataException("An error happend while loading the properties file '"+filename+"'", ex); } }
9596979899100101102103104105
fld.setAccessible(true); } } catch (NoSuchFieldException e) { throw new MetadataException("Can't find member '" + fieldName + "' in class " + (fld != null ? fld.getDeclaringClass() : rootObjectType), e); } result.add(fld); } return result;