Description
currently it's
} catch (IOException e) { throw e; } catch (Exception e) { e.printStackTrace(); new IOException(e.toString()); }
should be
} catch (IOException e) { throw e; } catch (Exception e) { throw new RuntimeException(e.toString()); }
so that we can get correct exception back from JBI client side and remove noisy exception stacktrace