Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Isolines/IsolineGenerationException.cs @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 730 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6
7namespace Microsoft.Research.DynamicDataDisplay.Charts.Isolines
8{
9  /// <summary>
10  /// Exception that is thrown when error occurs while building isolines.
11  /// </summary>
12  [Serializable]
13  public sealed class IsolineGenerationException : Exception
14  {
15    internal IsolineGenerationException() { }
16    internal IsolineGenerationException(string message) : base(message) { }
17    internal IsolineGenerationException(string message, Exception inner) : base(message, inner) { }
18    internal IsolineGenerationException(SerializationInfo info, StreamingContext context) : base(info, context) { }
19  }
20}
Note: See TracBrowser for help on using the repository browser.