added exceptions to ChangesetViewer

This commit is contained in:
Sebastian Sdorra
2011-09-29 14:13:08 +02:00
parent 7e690ad5cb
commit 389a25924e

View File

@@ -33,6 +33,10 @@
package sonia.scm.repository;
//~--- JDK imports ------------------------------------------------------------
import java.io.IOException;
/**
*
* @author Sebastian Sdorra
@@ -50,6 +54,10 @@ public interface ChangesetViewer
* @param max
*
* @return
*
* @throws IOException
* @throws RepositoryException
*/
public ChangesetPagingResult getChangesets(int start, int max);
public ChangesetPagingResult getChangesets(int start, int max)
throws IOException, RepositoryException;
}