main
1using System;
2
3namespace MoMoney.boot.container.registration.mapping
4{
5 public class MissingInitializationStep<Output> : IMapInitializationStep<Output>
6 {
7 public Output initialize()
8 {
9 throw new ArgumentException("A map must be provided an initialization step before it can be used to map");
10 }
11 }
12}