blob: e16e3f1dabea26401d01f5e0712e6ff605405b53 [file] [log] [blame]
public class GotNewName {
public static void main(String[] args) {
GotNewName anObject = new GotNewName();
try {
anObject.throwBaby();
} catch(NullPointerException ne) {
// do nothing
}
anObject.killTime();
try {
anObject.throwBaby();
} catch(NullPointerException ne) {
// do nothing
}
try {
anObject.throwAnotherBaby();
} catch(IllegalArgumentException ie) {
// do nothing
}
}
public void throwBaby() {
throw new NullPointerException();
}
public void throwAnotherBaby() {
throw new IllegalArgumentException();
}
public void killTime() {
int j = 0;
while(j < 1000) {
j++;
}
}
}