Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/Scripts/ProblemDefinitionScriptException.cs @ 11885

Last change on this file since 11885 was 11885, checked in by abeham, 9 years ago

#2174:

  • Some refactorings and bug fixes
  • Renamed (Binary|Integer|Real)Encoding to (Binary|Integer|Real)VectorEncoding
  • Improved error messages when compiling programmable problems
File size: 670 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Runtime.Serialization;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace HeuristicLab.Problems.Programmable {
9  [Serializable]
10  public class ProblemDefinitionScriptException : Exception {
11    public ProblemDefinitionScriptException() { }
12    public ProblemDefinitionScriptException(string message) : base(message) { }
13    public ProblemDefinitionScriptException(string message, Exception inner) : base(message, inner) { }
14
15    protected ProblemDefinitionScriptException(SerializationInfo info, StreamingContext context)
16      : base(info, context) { }
17  }
18}
Note: See TracBrowser for help on using the repository browser.