1
0
mirror of synced 2024-11-28 17:31:00 +01:00
OpenTaiko/FDK19/コード/04.グラフィック/CTextureCreateFailedException.cs
2021-09-21 00:16:38 +02:00

30 lines
661 B
C#

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 )
{
}
}
}