提交 7c2e049a 编写于 作者: K kohsuke

use a better type

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@34826 71c3de6d-444a-0410-be80-ed276b4c234a
上级 2074646b
......@@ -20,6 +20,7 @@
*/
package hudson.remoting;
import java.io.InterruptedIOException;
import java.io.OutputStream;
import java.io.IOException;
import java.lang.ref.WeakReference;
......@@ -151,7 +152,7 @@ public class FastPipedOutputStream extends OutputStream {
try {
buf.wait(TIMEOUT);
} catch (InterruptedException e) {
throw new IOException(e.getMessage());
throw (InterruptedIOException)new InterruptedIOException(e.getMessage()).initCause(e);
}
// Try again.
continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册