triassic
08-07-2009, 10:36 AM
In this example, is there any way to get the exception to propagate to the outer try/catch? I can not modify functionB.
public void functionA() {
try {
functionB();
} catch (Exception e) {
}
}
public void functionB() {
try {
doSomething...
} catch (Exception e) {
}
}
public void functionA() {
try {
functionB();
} catch (Exception e) {
}
}
public void functionB() {
try {
doSomething...
} catch (Exception e) {
}
}