diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2017-03-27 16:04:35 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-03-30 11:20:55 +0300 |
commit | 1f09abde4cfa5a6c12508749b51b4ddd7f31f6db (patch) | |
tree | 140d5a86f858eef81912b94e7c9273f58e0ce93a /documentation/datamodel | |
parent | ad7a7e83c7c472560947ed2259e216808e8a07cf (diff) | |
download | vaadin-framework-1f09abde4cfa5a6c12508749b51b4ddd7f31f6db.tar.gz vaadin-framework-1f09abde4cfa5a6c12508749b51b4ddd7f31f6db.zip |
Fix Binder documentation on ValidationException (#8949)
Diffstat (limited to 'documentation/datamodel')
-rw-r--r-- | documentation/datamodel/datamodel-forms.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/datamodel/datamodel-forms.asciidoc b/documentation/datamodel/datamodel-forms.asciidoc index 3db83d6436..a565e2ed01 100644 --- a/documentation/datamodel/datamodel-forms.asciidoc +++ b/documentation/datamodel/datamodel-forms.asciidoc @@ -54,7 +54,7 @@ Button saveButton = new Button("Save", binder.writeBean(person); // A real application would also save the updated person // using the application's backend - } catch (BindingException e) { + } catch (ValidationException e) { Notification.show("Person could not be saved, " + "please check error messages for each field."); } |