Commit abfabb98 by Adam Megacz Committed by Adam Megacz

Win32Process.java (ConcreteProcess): Now throws an IOException so that…

Win32Process.java (ConcreteProcess): Now throws an IOException so that Throwable.printStackTrace fails correctly.

2002-03-09  Adam Megacz  <adam@xwt.org>

        * java/lang/Win32Process.java (ConcreteProcess): Now throws an
        IOException so that Throwable.printStackTrace fails correctly.

From-SVN: r50488
parent 52662243
2002-03-09 Adam Megacz <adam@xwt.org>
* java/lang/Win32Process.java (ConcreteProcess): Now throws an
IOException so that Throwable.printStackTrace fails correctly.
2002-03-08 Adam Megacz <adam@xwt.org>
* java/net/natPlainSocketImpl.cc (read, write, close): Formatting
......
......@@ -57,7 +57,7 @@ final class ConcreteProcess extends Process
public ConcreteProcess (String[] progarray, String[] envp) throws IOException
{
throw new Error("not implemented");
throw new IOException("not implemented");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment