I want to use the try-catch without it stopping in the studio when there is an exception. So basically I do the same operation in the try but change it slightly in the catch to carry out this action if the try fail. It works but studio stops after the expection how do you change it so it doesnt stop.
I think you are using one try catch and full project is inside it…
put try catch in processing part , for example if you are having 10 transaction…
so any error occurring during processing 1 transaction , it will go to the exception part and again it will start processing the next transaction.
In that case instead of keeping the whole sequence inside the try catch block and if any exception occurs it will go to catch block where it will execute the activities mentioned, we can place the particular activity inside a sequence within try catch block so that if that particular activity or a set of activities inside that sequence if gives us exception it will be handled by catch block and the remaining set of activities next inside the same sequence will get executed without any issues