@@ -137,7 +137,7 @@ public Pager<Issue> getIssues(Integer projectId, int itemsPerPage) throws GitLab
137
137
* @param projectIdOrPath The ID or URL-encoded path of the project owned by the authenticated user.
138
138
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
139
139
* @return the list of issues in the specified range.
140
- * @throws GitLabApiException
140
+ * @throws GitLabApiException if any exception occurs
141
141
*/
142
142
public List <Issue > getIssues (Object projectIdOrPath , IssueFilter filter ) throws GitLabApiException {
143
143
return (getIssues (projectIdOrPath , filter , 1 , getDefaultPerPage ()));
@@ -153,7 +153,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter) throws
153
153
* @param page the page to get.
154
154
* @param perPage the number of projects per page.
155
155
* @return the list of issues in the specified range.
156
- * @throws GitLabApiException
156
+ * @throws GitLabApiException if any exception occurs
157
157
*/
158
158
public List <Issue > getIssues (Object projectIdOrPath , IssueFilter filter , int page , int perPage ) throws GitLabApiException {
159
159
@@ -171,7 +171,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int pag
171
171
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
172
172
* @param itemsPerPage the number of Project instances that will be fetched per page.
173
173
* @return the list of issues in the specified range.
174
- * @throws GitLabApiException
174
+ * @throws GitLabApiException if any exception occurs
175
175
*/
176
176
public Pager <Issue > getIssues (Object projectIdOrPath , IssueFilter filter , int itemsPerPage ) throws GitLabApiException {
177
177
@@ -188,7 +188,7 @@ public Pager<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int it
188
188
*
189
189
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
190
190
* @return the list of issues in the specified range.
191
- * @throws GitLabApiException
191
+ * @throws GitLabApiException if any exception occurs
192
192
*/
193
193
public List <Issue > getIssues (IssueFilter filter ) throws GitLabApiException {
194
194
return (getIssues (filter , 1 , getDefaultPerPage ()));
@@ -204,7 +204,7 @@ public List<Issue> getIssues(IssueFilter filter) throws GitLabApiException {
204
204
* @param page the page to get.
205
205
* @param perPage the number of projects per page.
206
206
* @return the list of issues in the specified range.
207
- * @throws GitLabApiException
207
+ * @throws GitLabApiException if any exception occurs
208
208
*/
209
209
public List <Issue > getIssues (IssueFilter filter , int page , int perPage ) throws GitLabApiException {
210
210
@@ -222,7 +222,7 @@ public List<Issue> getIssues(IssueFilter filter, int page, int perPage) throws G
222
222
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
223
223
* @param itemsPerPage the number of Project instances that will be fetched per page.
224
224
* @return the list of issues in the specified range.
225
- * @throws GitLabApiException
225
+ * @throws GitLabApiException if any exception occurs
226
226
*/
227
227
public Pager <Issue > getIssues (IssueFilter filter , int itemsPerPage ) throws GitLabApiException {
228
228
0 commit comments