Skip to content

Commit

Permalink
*) suppressing InterruptedException errormessage
Browse files Browse the repository at this point in the history
  • Loading branch information
theli committed Oct 3, 2006
1 parent ce7ee74 commit a9a0f51
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/de/anomic/plasma/plasmaSwitchboard.java
Expand Up @@ -1751,6 +1751,7 @@ private void processResourceStack(plasmaSwitchboardQueue.Entry entry) throws Int
document.close();
document = null;
} catch (Exception e) {
if (e instanceof InterruptedException) throw (InterruptedException)e;
this.log.logSevere("Unexpected exception while parsing/indexing URL ",e);
} catch (Error e) {
this.log.logSevere("Unexpected exception while parsing/indexing URL ",e);
Expand Down

0 comments on commit a9a0f51

Please sign in to comment.