Update of /cvsroot/fb-contrib/fb-contrib/samples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20538/samples
Added Files:
DRE_Sample.java
Log Message:
Initial Checkin: DRE
--- NEW FILE: DRE_Sample.java ---
import java.io.IOException;
import java.sql.SQLException;
public class DRE_Sample
{
public void test1(int a) throws NullPointerException {
}
public void test2(int b) throws ClassCastException, IOException, IllegalMonitorStateException {
if (b == 0)
throw new IOException("test");
}
public void test3(int c) throws SQLException {
if (c == 0)
throw new SQLException("test");
}
}
|