public
class FinallyTest {
public String returnString() {
String str;
try {
str =
"Hello, William";
System.out.println(
"This is try block.");
return str;
}
catch(Exception e) {
System.out.println(
"This is catch block.");
}
finally {
System.out.println(
"This is finally block.");
}
return
null;
}
}