We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b55653 commit 6329674Copy full SHA for 6329674
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