Class FlowError<T>
public record FlowError<T> : IEquatable<FlowError<T>>
Type Parameters
T
- Inheritance
-
FlowError<T>
- Implements
-
IEquatable<FlowError<T>>
- Inherited Members
Constructors
FlowError(T?, FlowErrorCode, string?)
public FlowError(T? data, FlowErrorCode errorCode, string? message)
Parameters
dataTerrorCodeFlowErrorCodemessagestring
Properties
ErrorText
public string ErrorText { get; }
Property Value
data
public T? data { get; init; }
Property Value
- T
errorCode
public FlowErrorCode errorCode { get; init; }
Property Value
message
public string? message { get; init; }