More exception handling and messages.

This commit is contained in:
FrozenCow 2011-01-15 02:57:11 +01:00
parent b22a48d5cb
commit b501f1d8cb
5 changed files with 86 additions and 54 deletions

View file

@ -94,6 +94,9 @@ public class WebServerRequest extends Thread {
}
}
}
catch(Exception ex) {
debugger.error("Exception on WebRequest-thread: " + ex.toString());
}
}
public void handleUp(BufferedOutputStream out, String path) throws IOException {