/ src / Ryujinx.Graphics.Texture / Astc / AstcDecoderException.cs
AstcDecoderException.cs
1  using System;
2  
3  namespace Ryujinx.Graphics.Texture.Astc
4  {
5      public class AstcDecoderException : Exception
6      {
7          public AstcDecoderException(string exMsg) : base(exMsg) { }
8      }
9  }