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