Exception Handling corrective approach
Hi, below is just simple example as per my professional experience for exception handling public class NestedExceptionHandling { public void MainMethod() { try { //some implementation ChildMethod1(); } catch (Exception exception) { //Handle exception } } private void ChildMethod1() { try { //some implementation ChildMethod2(); ...