Skip to content

Commit 69300eb

Browse files
committed
Added type name to exception message.
1 parent 3fdafa1 commit 69300eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.Transforms/PermutationFeatureImportanceExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ private static Type GetImplementedIPredictionTransformer(Type type)
731731
}
732732
}
733733

734-
throw new ArgumentException($"Type IPredictionTransformer not implemented by provided type", nameof(type));
734+
throw new ArgumentException($"Type IPredictionTransformer not implemented by provided type, {type}", nameof(type));
735735
}
736736

737737
#endregion

0 commit comments

Comments
 (0)