mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 00:15:44 +01:00
added exceptions to ChangesetViewer
This commit is contained in:
@@ -33,6 +33,10 @@
|
|||||||
|
|
||||||
package sonia.scm.repository;
|
package sonia.scm.repository;
|
||||||
|
|
||||||
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
@@ -50,6 +54,10 @@ public interface ChangesetViewer
|
|||||||
* @param max
|
* @param max
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
* @throws RepositoryException
|
||||||
*/
|
*/
|
||||||
public ChangesetPagingResult getChangesets(int start, int max);
|
public ChangesetPagingResult getChangesets(int start, int max)
|
||||||
|
throws IOException, RepositoryException;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user