Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Runtime.Serialization;
|
---|
6 |
|
---|
7 | namespace 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.