GLPK for C#/CLI  1.10.0
All Classes Namespaces Functions Properties Pages
GlpkException.cs
1 using System;
2 
3 namespace org.gnu.glpk
4 {
5 
6  public class GlpkException: Exception
7  {
8  public GlpkException()
9  {
10  }
11 
12  public GlpkException(string message)
13  : base(message)
14  {
15  }
16 
17  public GlpkException(string message, Exception inner)
18  : base(message, inner)
19  {
20  }
21  }
22 }