OSDN Git Service

d3e6c70b945359c10d267b7be3158bec3b0caee0
[strokestylet/CsWin10Desktop3.git] / FDK24 / FDKException.cs
1 using System;
2
3 namespace FDK
4 {
5         class FDKException : Exception
6         {
7                 public FDKException() : base()
8                 {
9                 }
10                 public FDKException( string msg ) : base( msg )
11                 {
12                 }
13                 public FDKException( string msg, Exception inner ) : base( msg, inner )
14                 {
15                 }
16         }
17 }