OSDN Git Service

SSTFEditor, StrokeStyle<T> を SSTFormat v3 に移行。
[strokestylet/CsWin10Desktop3.git] / FDK / FDKException.cs
1 using System;
2
3 namespace FDK
4 {
5         class FDKException : Exception
6         {
7                 public FDKException()
8                         : base()
9                 {
10                         Log.ERROR( "" );
11                 }
12
13                 public FDKException( string msg ) 
14                         : base( msg )
15                 {
16                         Log.ERROR( msg );
17                 }
18
19                 public FDKException( string msg, Exception inner )
20                         : base( msg, inner )
21                 {
22                         Log.ERROR( msg );
23                 }
24         }
25 }