Skip to content

Commit

Permalink
Update failure message syntax (#7273)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanKilleen authored Jul 2, 2024
1 parent 000d8fe commit dab2a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/actors/receive-actor-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ try
}
catch (Exception e)
{
Sender.Tell(new Failure { Exception = e }, Self);
Sender.Tell(new Akka.Actor.Status.Failure(e), Self);
}
```

Expand Down

0 comments on commit dab2a5e

Please sign in to comment.