How do we check in reframework in the end process if end process ended with exception?

How do we check in reframework in the end process if end process ended with exception ?. In reframework if all transaction data has been processed it will go to end process . What I want to know is how do we check in end process is the end process was caused by expcetion ? cause I wanna detect it in the end process. In the end process I will only send email if the process ended not because of exception. Thanks.

For example the process ended with exception I want to detect that on end process.

Thanks for idea.

Hi @Jelrey,

Add Try catch Block inside End process. In catch block add exception in log message. While execution check logs at the end if u get any exception message.

Thanks!

I want to add the check in the closeallplications inside end process @kadiravan_kalidoss .