public class RETest{
public static void crash(){
RuntimeException RE=new RuntimeException("Oops");
throw RE;
}
public static void main(String []args){
crash();
}
}
public class RETest{
public static void crash(){
RuntimeException RE=new RuntimeException("Oops");
throw RE;
}
public static void main(String []args){
crash();
}
}