Package com.microsoft.durabletask
Class CompositeTaskFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.microsoft.durabletask.CompositeTaskFailedException
-
- All Implemented Interfaces:
java.io.Serializable
public class CompositeTaskFailedException extends java.lang.RuntimeExceptionException that gets thrown when multipleTasks for an activity or sub-orchestration fails with an unhandled exception.Detailed information associated with each task failure can be retrieved using the
getExceptions()method.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Exception>getExceptions()Gets a list of exceptions that occurred during execution of a group ofTaskThese exceptions include details of the task failure and exception information
-
-
-
Method Detail
-
getExceptions
public java.util.List<java.lang.Exception> getExceptions()
Gets a list of exceptions that occurred during execution of a group ofTaskThese exceptions include details of the task failure and exception information- Returns:
- a list of exceptions
-
-