Get Exception Type of Queue Item

Hi Shreya,

I came accross this open conversation with no solution marked so gave a thought to share it with you.

Simply use GetQueueItem activity, its output you will get QueueItem.
use for each loop activity of TypeArgument QueueItem
inside which use log message “QueueItem.ProcessingException.Type” it will give you result ApplicationException or BusinessException.

or else you can also below command if you dont want to use for each loop and check the latest on top exception.

QueueItem.First().ProcessingException.Type

Regards,
Vighnesh Gadekar.