[LIB-13] Rename some common classes
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / Scanner.java
index 2c6095a..5188214 100644 (file)
@@ -26,14 +26,14 @@ import org.hedgecode.chess.scanner.entity.PGNTournament;
  */
 public interface Scanner {
 
-    PGNTournament scanTournament(String tournamentId) throws ChessHogScannerException;
+    PGNTournament scanTournament(String tournamentId) throws ScannerException;
 
-    PGNTournament findTournament(String tournamentName) throws ChessHogScannerException;
+    PGNTournament findTournament(String tournamentName) throws ScannerException;
 
-    PGNGame scanGame(String gameId) throws ChessHogScannerException;
+    PGNGame scanGame(String gameId) throws ScannerException;
 
-    PGNGame scanGame(String gameId, String tournamentId) throws ChessHogScannerException;
+    PGNGame scanGame(String gameId, String tournamentId) throws ScannerException;
 
-    PGNGame scanUrl(String gameUrl) throws ChessHogScannerException;
+    PGNGame scanUrl(String gameUrl) throws ScannerException;
 
 }