IOException(Throwable) constructor isn't available in Java 5.

This commit is contained in:
akwizgran
2011-09-19 14:49:27 +01:00
parent fde354957c
commit 7cdca62063

View File

@@ -126,7 +126,7 @@ implements ConnectionWriter {
try {
wait();
} catch(InterruptedException e) {
throw new IOException(e);
throw new IOException(e.getMessage());
}
if(exception != null) throw exception;
}