@@ -137,7 +137,7 @@ public Pager<Issue> getIssues(Integer projectId, int itemsPerPage) throws GitLab
137137 * @param projectIdOrPath The ID or URL-encoded path of the project owned by the authenticated user.
138138 * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
139139 * @return the list of issues in the specified range.
140- * @throws GitLabApiException
140+ * @throws GitLabApiException if any exception occurs
141141 */
142142 public List <Issue > getIssues (Object projectIdOrPath , IssueFilter filter ) throws GitLabApiException {
143143 return (getIssues (projectIdOrPath , filter , 1 , getDefaultPerPage ()));
@@ -153,7 +153,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter) throws
153153 * @param page the page to get.
154154 * @param perPage the number of projects per page.
155155 * @return the list of issues in the specified range.
156- * @throws GitLabApiException
156+ * @throws GitLabApiException if any exception occurs
157157 */
158158 public List <Issue > getIssues (Object projectIdOrPath , IssueFilter filter , int page , int perPage ) throws GitLabApiException {
159159
@@ -171,7 +171,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int pag
171171 * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
172172 * @param itemsPerPage the number of Project instances that will be fetched per page.
173173 * @return the list of issues in the specified range.
174- * @throws GitLabApiException
174+ * @throws GitLabApiException if any exception occurs
175175 */
176176 public Pager <Issue > getIssues (Object projectIdOrPath , IssueFilter filter , int itemsPerPage ) throws GitLabApiException {
177177
@@ -188,7 +188,7 @@ public Pager<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int it
188188 *
189189 * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
190190 * @return the list of issues in the specified range.
191- * @throws GitLabApiException
191+ * @throws GitLabApiException if any exception occurs
192192 */
193193 public List <Issue > getIssues (IssueFilter filter ) throws GitLabApiException {
194194 return (getIssues (filter , 1 , getDefaultPerPage ()));
@@ -204,7 +204,7 @@ public List<Issue> getIssues(IssueFilter filter) throws GitLabApiException {
204204 * @param page the page to get.
205205 * @param perPage the number of projects per page.
206206 * @return the list of issues in the specified range.
207- * @throws GitLabApiException
207+ * @throws GitLabApiException if any exception occurs
208208 */
209209 public List <Issue > getIssues (IssueFilter filter , int page , int perPage ) throws GitLabApiException {
210210
@@ -222,7 +222,7 @@ public List<Issue> getIssues(IssueFilter filter, int page, int perPage) throws G
222222 * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
223223 * @param itemsPerPage the number of Project instances that will be fetched per page.
224224 * @return the list of issues in the specified range.
225- * @throws GitLabApiException
225+ * @throws GitLabApiException if any exception occurs
226226 */
227227 public Pager <Issue > getIssues (IssueFilter filter , int itemsPerPage ) throws GitLabApiException {
228228
0 commit comments