Improves error message in python wrappers

This commit is contained in:
AlexCatarino
2018-03-14 12:30:50 +00:00
parent 35d29060d0
commit b8cfbd7c24
5 changed files with 5 additions and 5 deletions
@@ -40,7 +40,7 @@ namespace QuantConnect.Algorithm.Framework.Alphas
{
if (!model.HasAttr(attributeName))
{
throw new NotImplementedException($"IAlphaModel.{attributeName} must be implemented. Please checkout the {model.GetPythonType()}");
throw new NotImplementedException($"IAlphaModel.{attributeName} must be implemented. Please implement this missing method on {model.GetPythonType()}");
}
}
}