cancel
Showing results for 
Search instead for 
Did you mean: 

Is exception handling available in ABSL scripting?

Vignesh_Dh
Participant

Dear Experts,

As most of the popular programming languages like javascript,C#,Java etc provide the exception handling with try{}catch{} block in code, does ABSL have similar feature?

Exception handling can be used in lot many scenarios but my sample case can be the one below:

When we can do REST API calls in ABSL (may be MDR kind of scenario), we should have some feature for exception handling so some REST API calls can be retried when server errors are returned due to some locking objects or server busy kind of scenario, instead of just abruptly terminating the process when we get HTTP 500 response codes.

Regards,

Vignesh

View Entire Topic
former_member183363
Active Contributor

The short answer is no. The longer answer is no, but you can use IsSet(), IsInitial() and 'if Count() > 0)' to handle NULL data references.

Vignesh_Dh
Participant
0 Kudos

Thanks for your feedback Lewis.