Ryujinx/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs

9 lines
188 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
using System;
namespace Ryujinx.Graphics.Texture.Astc
{
public class AstcDecoderException : Exception
{
public AstcDecoderException(string exMsg) : base(exMsg) { }
}
}