(maxLimit)
| 679 | } |
| 680 | |
| 681 | static validateMaxLimit(maxLimit) { |
| 682 | if (maxLimit <= 0) { |
| 683 | throw 'Max limit must be a value greater than 0.'; |
| 684 | } |
| 685 | } |
| 686 | |
| 687 | static validateRequestComplexity(requestComplexity) { |
| 688 | if (requestComplexity == null) { |