Changeset 2d157db0 in vaadin
- Timestamp:
- 12/22/11 12:13:11 (17 months ago)
- Branches:
- master, 7.0, 7.1
- Children:
- 109ce19c
- Parents:
- d86d5eb1
- git-author:
- Artur Signell <artur@…> (12/22/11 12:13:11)
- git-committer:
- Artur Signell <artur@…> (12/22/11 12:13:11)
- File:
-
- 1 edited
-
src/com/vaadin/data/util/ObjectProperty.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/com/vaadin/data/util/ObjectProperty.java
r7e594fb40 r2d157db0 126 126 // Checks the type of the value 127 127 if (newValue != null && !type.isAssignableFrom(newValue.getClass())) { 128 throw new IllegalArgumentException( 129 "Invalid value type for ObjectProperty."); 128 throw new IllegalArgumentException("Invalid value type " 129 + newValue.getClass().getName() 130 + " for ObjectProperty of type " + type.getName() + "."); 130 131 } 131 132
Note: See TracChangeset
for help on using the changeset viewer.
