blob: f39f9f4eeab0654d007a14c46b86ed3894515874 [file] [log] [blame]
package trycatch18_in;
import java.net.Socket;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.zip.DataFormatException;
class TestWithThrows1 {
void foo(int a) throws FileNotFoundException {
/*[*/Socket s=new Socket();
FileInputStream is=new FileInputStream("a.b");
s.getInetAddress();/*]*/
if (s.getTcpNoDelay())
throw new DataFormatException();
is.available();
}
}