Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/04/19 15:47:41 (5 years ago)
Author:
gkronber
Message:

#2955: changed error strings when trying to load an incompatible dataset for a model.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicClassificationModel.cs

    r16565 r16763  
    8181      var classificationProblemData = problemData as IClassificationProblemData;
    8282      if (classificationProblemData == null)
    83         throw new ArgumentException("The problem data is not a regression problem data. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");
     83        throw new ArgumentException("The problem data is not compatible with this classification model. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");
    8484      return IsProblemDataCompatible(classificationProblemData, out errorMessage);
    8585    }
Note: See TracChangeset for help on using the changeset viewer.