Question

Catch specific exception in error handling

  • 21 September 2022
  • 1 reply
  • 45 views

Hi,

I would like to handle a specific exception in the catch action instead of catching all types of error. How can I achieve that?

Thank you.


1 reply

Userlevel 3
Badge +6

@Damiano Emanuele Dovico​ 

This option is not available.

 

You will have to catch all exceptions.

Check exception type using if and throw error if not specific exception

Reply