We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea07be8 commit 3780923Copy full SHA for 3780923
src/Microsoft.ML/TextLoader.cs
@@ -91,7 +91,7 @@ private string TypeToName(Type type)
91
else if (type == typeof(bool))
92
return "BL";
93
else
94
- throw new Exception("Type not implemented or supported."); //Add more types.
+ throw new System.NotSupportedException("Type ${type.FullName} is not implemented or supported."); //Add more types.
95
}
96
97
public ILearningPipelineStep ApplyStep(ILearningPipelineStep previousStep, Experiment experiment)
0 commit comments