actually print the stack trace

This commit is contained in:
Laurent Clouet
2015-07-20 17:45:38 +01:00
parent a4377e10df
commit 718c57e0fd

View File

@@ -448,6 +448,7 @@ public class Server extends Thread implements HostnameVerifier, X509TrustManager
catch (Exception e) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
throw new FermeException("error requestJob: unknow exception " + e + " stacktrace: " + sw.toString());
}
finally {