Skip to content

Commit 2e12500

Browse files
committed
Added Exception null default value to InitialEffect
1 parent 2e7c291 commit 2e12500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Cleipnir.ResilientFunctions/Domain/InitialState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public record InitialState(
99
IEnumerable<InitialEffect> Effects
1010
);
1111

12-
public record InitialEffect(string Id, object? Value, Exception? Exception);
12+
public record InitialEffect(string Id, object? Value, Exception? Exception = null);

0 commit comments

Comments
 (0)