OSDN Git Service

Merge branch '動画の最適化' into develop
[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 }