Hi,
I have started to use temporal for our business workflows. However, wrt to error propagation I didn’t get a clear answer as to when should we use details
?
It will be helpful someone can shed some light here maybe with some example scenarios ?
// NewApplicationErrorWithCause creates new instance of retryable *ApplicationError with message, type, cause, and optional details.
// Use ApplicationError for any use case specific errors that cross activity and child workflow boundaries.
// errType can be used to control if error is retryable or not. Add the same type in to RetryPolicy.NonRetryableErrorTypes
// to avoid retrying of particular error types.
func NewApplicationErrorWithCause(message, errType string, cause error, details ...interface{}) error {
return internal.NewApplicationError(message, errType, false, cause, details...)
}