File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
src/main/java/com/slicingdice/jslicer Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,8 @@ private void raiseError(final JSONObject error) {
115115 throw new AccountBannedException (message );
116116 case 33 :
117117 throw new AccountDisabledException (message );
118+ case 39 :
119+ throw new IndexInvalidRangeException (message );
118120 // Field errors (40 - 59)
119121 case 40 :
120122 throw new FieldMissingParamException (message );
Original file line number Diff line number Diff line change 1+ package com .slicingdice .jslicer .exceptions .api .index ;
2+
3+ import com .slicingdice .jslicer .exceptions .api .SlicingDiceException ;
4+
5+ public class IndexInvalidRangeException extends SlicingDiceException {
6+ public IndexInvalidRangeException (final String message ) {
7+ super (message );
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments