handle all exceptions in socks proxy

This commit is contained in:
Nathan Freitas 2015-02-23 12:29:55 -05:00
parent dd09c6b19a
commit f2490d9032
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ public class ProxyServer implements Runnable {
final ProxyServer ps = new ProxyServer(auth, s); final ProxyServer ps = new ProxyServer(auth, s);
(new Thread(ps)).start(); (new Thread(ps)).start();
} }
} catch (final IOException ioe) { } catch (final Exception ioe) {
ioe.printStackTrace(); ioe.printStackTrace();
} finally { } finally {
} }