We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fa7dee commit f9ab070Copy full SHA for f9ab070
src/com/xxdb/data/BasicDuration.java
@@ -182,7 +182,7 @@ private int getCodeNumber(String unit) {
182
int[] codes = new int[4];
183
for (int i = 0; i < 4; i++) {
184
if (!Character.isUpperCase(unit.charAt(i)))
185
- throw new RuntimeException("except upper letter, got " + unit);
+ throw new RuntimeException("The value of unit must duration enum type or contain four consecutive uppercase letters.");
186
codes[i] = unit.charAt(i);
187
}
188
return (codes[0] << 24) + (codes[1] << 16) + (codes[2] << 8) + codes[3];
0 commit comments