Throw statement behaviour in 8.1.1.10
Hi,
I have a business service and I am calling a method of it.
The code in this main method lies entirely in one try-catch block. Inside the main method, I call a sub-function which in turn lies in a try-catch block.
An exception is caught in the sub-function and when the control returns to the main method, the Main Method does not terminate, but continues with the next steps.
As per my knowledge, the exception should in turn be cascaded to the main method and should in turn trigger the 'catch' block of the main method which does not happen.