Esempio n. 1
0
 internal StrategyModel(List <Exception> exceptions)
 {
     if (exceptions == null)
     {
         throw new ArgumentNullException(nameof(exceptions));
     }
     ExceptionsHandled.AddMany(exceptions);
 }
Esempio n. 2
0
        internal StrategyModel(Exception exception)
        {
            if (exception == null)
            {
                throw new ArgumentNullException(nameof(exception));
            }

            ExceptionsHandled.Add(exception);
        }