diff options
author | Brian S. O'Neill <bronee@gmail.com> | 2007-06-02 16:21:19 +0000 |
---|---|---|
committer | Brian S. O'Neill <bronee@gmail.com> | 2007-06-02 16:21:19 +0000 |
commit | 19944d58e361cd5934496f43b4500e961d8a16e6 (patch) | |
tree | ff6663d5b8377702afc54b400e610598b505247d /src/main/java/com/amazon/carbonado/raw | |
parent | 685ae449325bb6196c767dedf5d1902927abfb48 (diff) |
Improve unsupported array type exception messages.
Diffstat (limited to 'src/main/java/com/amazon/carbonado/raw')
-rw-r--r-- | src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java b/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java index c0fa0af..1c9a4e9 100644 --- a/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java +++ b/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java @@ -457,7 +457,8 @@ public class GenericEncodingStrategy<S extends Storable> { }
private SupportException notSupported(StorableProperty<S> property) {
- return notSupported(property.getName(), property.getType().getName());
+ return notSupported(property.getName(),
+ TypeDesc.forClass(property.getType()).getFullName());
}
private SupportException notSupported(String propertyName, String typeName) {
|