Try-catch flow
Try{} Catch(Exception ex){} Catch(NumberFormatException ex){} Catch(NullRefernceException ex){}
Suppose we have this, in which case the other two catch blocks will be executed?
Add comment
Try{} Catch(Exception ex){} Catch(NumberFormatException ex){} Catch(NullRefernceException ex){}
Suppose we have this, in which case the other two catch blocks will be executed?