Skip to content

Commit

Permalink
*) Bugfix for exception
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1448 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
theli committed Jan 26, 2006
1 parent c274b56 commit d9bcd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaCrawlStacker.java
Expand Up @@ -414,7 +414,7 @@ public stackCrawlMessage(String urlHash, byte[][] entryBytes) {
this.handle = Integer.parseInt(new String(entryBytes[11], "UTF-8"));
} catch (Exception e) {
e.printStackTrace();
throw new IllegalStateException(e);
throw new IllegalStateException(e.toString());
}
}

Expand Down

0 comments on commit d9bcd73

Please sign in to comment.