DotCMIS: fixed typo in exception

git-svn-id: https://svn.apache.org/repos/asf/chemistry/dotcmis/trunk@1461533 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/DotCMIS/data/data-impl.cs b/DotCMIS/data/data-impl.cs
index b0ff4a4..72cee36 100644
--- a/DotCMIS/data/data-impl.cs
+++ b/DotCMIS/data/data-impl.cs
@@ -505,7 +505,7 @@
                 case PropertyType.Integer:

                     if (!(value is sbyte || value is byte || value is short || value is ushort || value is int || value is uint || value is long))

                     {

-                        throw new ArgumentException("Property '" + Id + "' is an Id property!");

+                        throw new ArgumentException("Property '" + Id + "' is an Integer property!");

                     }

                     break;

                 case PropertyType.Boolean: