GpuException.cs 206 B

1234567891011
  1. using System;
  2. namespace Ryujinx.HLE.Gpu.Exceptions
  3. {
  4. class GpuException : Exception
  5. {
  6. public GpuException() : base() { }
  7. public GpuException(string ExMsg) : base(ExMsg) { }
  8. }
  9. }