Catching your Exception
public void myMethod2() {
Try {
myMethod1();
}
Catch (MyException e) {
showStatus(“Message : “ + e.getMessage());
}
}
Previous slide
Next slide
Back to first slide
View graphic version