Exemplo n.º 1
0
 public Transform(TransformsCollectionBuilder transformsCollectionBuilder, Func <Exception, bool> matching)
 {
     _transformsCollectionBuilder = transformsCollectionBuilder;
     _matcher = matching;
 }
Exemplo n.º 2
0
 public Transform(TransformsCollectionBuilder transformsCollectionBuilder)
     : this(transformsCollectionBuilder, ex => ex.GetType() == typeof(T))
 {
 }