blame viewer throws IOException and RepositoryException

This commit is contained in:
Sebastian Sdorra
2011-09-15 11:16:46 +02:00
parent 6c127b62bf
commit 4e76b3e18e

View File

@@ -33,6 +33,10 @@
package sonia.scm.repository; package sonia.scm.repository;
//~--- JDK imports ------------------------------------------------------------
import java.io.IOException;
/** /**
* Interface description * Interface description
* *
@@ -51,6 +55,10 @@ public interface BlameViewer
* @param path * @param path
* *
* @return * @return
*
* @throws IOException
* @throws RepositoryException
*/ */
public BlamePagingResult getBlame(String revision, String path); public BlamePagingResult getBlame(String revision, String path)
throws IOException, RepositoryException;
} }