ShaderException.cs 213 B

1234567891011
  1. using System;
  2. namespace Ryujinx.Graphics.Gal
  3. {
  4. class ShaderException : Exception
  5. {
  6. public ShaderException() : base() { }
  7. public ShaderException(string message) : base(message) { }
  8. }
  9. }