You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting an event, following error can display:
Can't find domain event store for Some.Event. Is Some.Event a domain event and does it have registered store
This message is incorrect when any of event handler's dependencies fail to instantiate. Further, the message can mask true error/exception message. For example:
public class SomeEventProcessor : IDomainEventHandler<Some.Event>
{
public SomeEventProcessor(Mailer mailer) {
...
public class Mailer
{
public Mailer() {
throw new ConfigurationsErrorException("I'm missing some setting");
In this case, a "Can't find domain event..." message will be displayed, instead of Mailer's message.
The text was updated successfully, but these errors were encountered:
When submitting an event, following error can display:
Can't find domain event store for Some.Event. Is Some.Event a domain event and does it have registered store
This message is incorrect when any of event handler's dependencies fail to instantiate. Further, the message can mask true error/exception message. For example:
In this case, a "Can't find domain event..." message will be displayed, instead of Mailer's message.
The text was updated successfully, but these errors were encountered: