diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/declarative/FieldBinder.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/declarative/FieldBinder.java b/server/src/com/vaadin/ui/declarative/FieldBinder.java index bd906682fa..577e9f5515 100644 --- a/server/src/com/vaadin/ui/declarative/FieldBinder.java +++ b/server/src/com/vaadin/ui/declarative/FieldBinder.java @@ -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); } } |