aboutsummaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-08-03 10:54:09 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2019-08-03 10:54:09 +0200
commit8fe8c69b597eec2bfda9b2fb2413751ee03ed8b5 (patch)
tree52aa2e026e2c5502a3104f75882608781e7cbd0e /vdslib
parentf19b0d9b4a373a91580a9e0c1be40840bdf4da10 (diff)
Add maxRedundancy to exception message.
Diffstat (limited to 'vdslib')
-rw-r--r--vdslib/src/main/java/com/yahoo/vdslib/distribution/Group.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/vdslib/src/main/java/com/yahoo/vdslib/distribution/Group.java b/vdslib/src/main/java/com/yahoo/vdslib/distribution/Group.java
index e3caaeb455c..680021893f7 100644
--- a/vdslib/src/main/java/com/yahoo/vdslib/distribution/Group.java
+++ b/vdslib/src/main/java/com/yahoo/vdslib/distribution/Group.java
@@ -237,7 +237,9 @@ public class Group implements Comparable<Group> {
}
this.distributionSpec = distributionSpec;
// Create the pre calculated results
- if (maxRedundancy <= 0 || maxRedundancy > 255) throw new IllegalArgumentException("The max redundancy must be a positive number in the range 1-255.");
+ if (maxRedundancy <= 0 || maxRedundancy > 255) {
+ throw new IllegalArgumentException("The max redundancy (" + maxRedundancy + ") must be a positive number in the range 1-255.");
+ }
int asterixCount = distributionSpec.length - firstAsterix;
int[][] preCalculations = new int[maxRedundancy + 1][];
for (int i=1; i<=maxRedundancy; ++i) {