Skip to content

Commit

Permalink
feat: or-1716 throw exception when trying to accept correctie for unk…
Browse files Browse the repository at this point in the history
…nown vereniging
  • Loading branch information
koenmetsu committed Jan 3, 2025
1 parent 6502367 commit 40070b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/AssociationRegistry/Vereniging/VerenigingOfAnyKind.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,10 @@ public void AanvaardDubbeleVereniging(VCode dubbeleVereniging)

public void AanvaardCorrectieDubbeleVereniging(VCode dubbeleVereniging)
{
if (!State.CorresponderendeVCodes.Contains(dubbeleVereniging))
throw new ApplicationException($"Vereniging kon correctie dubbele vereniging ({dubbeleVereniging}) niet aanvaarden omdat dubbele vereniging " +
$"niet voorkomt in de corresponderende VCodes: {string.Join(',', State.CorresponderendeVCodes)}.");

AddEvent(VerenigingAanvaarddeCorrectieDubbeleVereniging.With(VCode, dubbeleVereniging));
}

Expand Down

0 comments on commit 40070b7

Please sign in to comment.