LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System; 2 : 3 : namespace Cqrs.Domain.Exceptions 4 : { 5 : [Serializable] 6 : public class DuplicateSagaEventException<TSaga, TAuthenticationToken> : Exception 7 : where TSaga : ISaga<TAuthenticationToken> 8 0 : { 9 0 : public DuplicateSagaEventException(Guid id, int version) 10 : : base(string.Format("Eventstore gave more than one event for saga '{0}' of type '{1}' for version {2}", id, typeof(TSaga).FullName, version)) 11 : { 12 : } 13 : } 14 : } |
Generated by: LCOV version 1.10 |