This is something that\'s been bugging me for a while with regards to Program Flow.
I wanted to know if it\'s possible to catch an error from a Method in order to stop i
Can you try:
try { method01() } catch (final Exception e) { // do something return; ///stop processing exit }
the method01 will throw Exception:
private void method01() throws Exception { // something }