Przeglądaj źródła

Report identifier if field binding fails (#17837)

Change-Id: Ie3787792ab508adbf570d1a913ab49ec86924fbb
tags/7.5.0.beta1
Artur Signell 9 lat temu
rodzic
commit
4a4baf0bf6

+ 6
- 3
server/src/com/vaadin/ui/declarative/FieldBinder.java Wyświetl plik

@@ -204,11 +204,14 @@ public class FieldBinder implements Serializable {
}
return true;
} catch (IllegalAccessException e) {
throw new FieldBindingException("Field binding failed", e);
throw new FieldBindingException("Field binding failed for "
+ identifier, e);
} catch (IllegalArgumentException e) {
throw new FieldBindingException("Field binding failed", e);
throw new FieldBindingException("Field binding failed for "
+ identifier, e);
} catch (InvocationTargetException e) {
throw new FieldBindingException("Field binding failed", e);
throw new FieldBindingException("Field binding failed for "
+ identifier, e);
}
}


Ładowanie…
Anuluj
Zapisz