OSDN Git Service

DTXManiaソリューション、DTXManiaプロジェクト、DTXCreatorプロジェクト、FDKプロジェクトについて英語化。
[dtxmania/dtxmania.git] / FDK / コード / 04.グラフィック / CTextureCreateFailedException.cs
diff --git a/FDK/コード/04.グラフィック/CTextureCreateFailedException.cs b/FDK/コード/04.グラフィック/CTextureCreateFailedException.cs
new file mode 100644 (file)
index 0000000..1644e05
--- /dev/null
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Runtime.Serialization;
+
+namespace FDK
+{
+       /// <summary>
+       /// テクスチャの作成に失敗しました。
+       /// </summary>
+       public class CTextureCreateFailedException : Exception
+       {
+               public CTextureCreateFailedException()
+               {
+               }
+               public CTextureCreateFailedException( string message )
+                       : base( message )
+               {
+               }
+               public CTextureCreateFailedException( SerializationInfo info, StreamingContext context )
+                       : base( info, context )
+               {
+               }
+               public CTextureCreateFailedException( string message, Exception innerException )
+                       : base( message, innerException )
+               {
+               }
+       }
+}