Do I need to set catch block for each result of WaitForCreation
I have a question related to Try-Catch Block.
I'm using parallel process and I set Try-Catch on each process.
My question is when the process use WaitForCreation do I have to set catch block for false result?
I attach 2 images.
1.SetCatchEachFalse.png is setting catch block for false result of WaitForCreation.
2.NotSetCatchEachFalse.png is not setting catch block for false result of WaitForCreattion.
Please tell me which setting is correct.
Number 2 is correct. Each Catch block you have will have an exception execution path, so you should always pair a Try with a single Catch.