Goodz13
May 21st, 2003, 12:07 AM
Testing
String st;
try {
st = "This will throw an Exception because I said so";
throw new Exception(st);
} catch (Exception e) {
System.out.println(e.getMessage());
System.out.println("I told you so!");
} finally {
st = null;
}
String st;
try {
st = "This will throw an Exception because I said so";
throw new Exception(st);
} catch (Exception e) {
System.out.println(e.getMessage());
System.out.println("I told you so!");
} finally {
st = null;
}