Name: mgC56079 Date: 06/22/99
Runtime.exec("") throws NullPointerException while
IllegalArgumentException is expected
On winNt it throws IllegalArgumentException
------------------------------------- file test.java
import java.io.IOException
class test {
public static void main(String[] args) throws IOException {
Runtime.getRuntime().exec("");
}
}
------------------------------------- end of file test.java
======================================================================