f.setAccessible(true);
Unique v_unique = f.getAnnotation(Unique.class);
if (v_unique != null){
try{
Object idValue = OrmInfo.getFieldValue(clasz,orm.id,this);
UniqueUpdateValidator uuv = new UniqueUpdateValidator(clasz,orm.table,f.getName(),orm.id,idValue,v_unique);
if (uuv.validate(f.get(this)) == false){
errors.add(uuv.getMessage());
}
}
catch(Exception e){
throw new ValidateException(e);
}