Hi,
Kogito noob here.
I'm trying to create a workflow where a service task will contain a boundary intermediate error that catches a specific type of exception (e.g. BusinessException), and a catch-all error event subprocess that should deal with all other exception types (currently configured to catch Throwable).
However, when the service task throws a BusinessException, the boundary error handler is bypassed and the catch-all event subprocess executes.
Is there any way to tell Kogito to check if the boundary intermediate error matches the exception first before trickling up to the event subprocess?
Thanks,
Alan