fix to ignore META-INF and NullPointerException on external siphon

This commit is contained in:
benfry
2003-10-28 15:22:38 +00:00
parent dc6019541e
commit 075caf66cf
2 changed files with 12 additions and 5 deletions

View File

@@ -55,6 +55,9 @@ class PdeMessageSiphon implements Runnable {
consumer.message(currentLine);
//System.err.println(currentLine);
}
} catch (NullPointerException npe) {
// ignore this guy, since it's prolly just shutting down
} catch (Exception e) {
// on linux, a "bad file descriptor" message comes up when
// closing an applet that's being run externally.