CQRSlite.Domain.Exception.AggregateOrEventMissingIdException.AggregateOrEventMissingIdException C# (CSharp) Метод

AggregateOrEventMissingIdException() публичный Метод

public AggregateOrEventMissingIdException ( Type aggregateType, Type eventType ) : System
aggregateType System.Type
eventType System.Type
Результат System
        public AggregateOrEventMissingIdException(Type aggregateType, Type eventType)
            : base($"An event of type {eventType.FullName} was tried to save from {aggregateType.FullName} but no id where set on either")
        {
        }
AggregateOrEventMissingIdException