Interface IWorkflowSoftErrorDescriptor
-
- All Known Implementing Classes:
WorkflowSoftErrorDescriptor
public interface IWorkflowSoftErrorDescriptor
Wrapper class with all details forINodeExecutionParams.softError(String, String, IValueCreator, Throwable)
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Throwable
getCause()
Consumer<IUnionValueBuilder<String>>
getErrorValue()
String
getMessage()
-
-
-
Method Detail
-
getCause
Throwable getCause()
- Returns:
- The exception that caused the soft error. May be
null
when not caused by any exception.
-
getErrorValue
Consumer<IUnionValueBuilder<String>> getErrorValue()
- Returns:
- Function that takes a value builder to create the error value.
-
getMessage
String getMessage()
- Returns:
- Message providing more details about the error.
-
-