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 a38c1a1 commit 5f203c4Copy full SHA for 5f203c4
iabgpp-encoder/src/main/java/com/iab/gpp/encoder/datatype/encoder/IntegerBitSet.java
@@ -48,7 +48,7 @@ public int size() {
48
private int getOffset(int value) {
49
int offset = from - adjustment + value;
50
if (offset < from) {
51
- throw new IndexOutOfBoundsException();
+ throw new IndexOutOfBoundsException("Negative index provided");
52
}
53
return offset;
54
0 commit comments