diff options
author | James Moger <james.moger@gmail.com> | 2011-08-09 11:28:48 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-08-09 11:28:48 -0400 |
commit | 1a2339a9f1f96ddca64ab392dd7f9e1621e6c201 (patch) | |
tree | 413631f6e46e2bb2826e67f98df5b5180468833b /src/com/iciql/util | |
parent | fec6df5eaac334540e220d7f7c05c9d21357f554 (diff) | |
download | iciql-1a2339a9f1f96ddca64ab392dd7f9e1621e6c201.tar.gz iciql-1a2339a9f1f96ddca64ab392dd7f9e1621e6c201.zip |
IQTable.primaryKey is now an array. Default values from objects.
Also fixed an error with allowing null objects. Noted rapid churn of
iciql in documentation. Changed build constants for next release.
Diffstat (limited to 'src/com/iciql/util')
-rw-r--r-- | src/com/iciql/util/Utils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/iciql/util/Utils.java b/src/com/iciql/util/Utils.java index 3237742..fa794cf 100644 --- a/src/com/iciql/util/Utils.java +++ b/src/com/iciql/util/Utils.java @@ -116,7 +116,7 @@ public class Utils { }
}
}
- throw new IciqlException("Exception trying to create " + clazz.getName() + ": " + e, e);
+ throw new IciqlException("Missing default constructor? Exception trying to create " + clazz.getName() + ": " + e, e);
}
}
};
|