public InboxOffsetBasedPageRequest()

in ddm-notification-service-api/src/main/java/com/epam/digital/data/platform/notification/dto/inbox/InboxOffsetBasedPageRequest.java [29:38]


  public InboxOffsetBasedPageRequest(int limit, int offset) {
    if (limit < 1) {
      throw new IllegalArgumentException("Limit must not be less than one!");
    }
    if (offset < 0) {
      throw new IllegalArgumentException("Offset index must not be less than zero!");
    }
    this.limit = limit;
    this.offset = offset;
  }