Skip to content

Conversation

hhko
Copy link
Contributor

@hhko hhko commented Mar 1, 2025

Ex.

Before

var removeBookingResult = participant.RemoveFromSchedule(notification.Session);
if (removeBookingResult.IsError)
{
    throw new EventualConsistencyException(
        ReservationCanceledEvent.ParticipantNotFound

After

var removeBookingResult = participant.RemoveFromSchedule(notification.Session);
if (removeBookingResult.IsError)
{
    throw new EventualConsistencyException(
        ReservationCanceledEvent.ParticipantScheduleUpdateFailed           // <-

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant