コード例 #1
0
ファイル: Exceptions.cs プロジェクト: paulopez78/eventuous
 public InvalidIdException(AggregateId id) : base(
         $"Aggregate id {id.GetType().Name} cannot have an empty value"
         )
 {
 }
コード例 #2
0
 public InvalidIdException(AggregateId id) : this(id.GetType())
 {
 }