GpuExceptionHelper.cs 322 B

123456789101112
  1. namespace Ryujinx.HLE.Gpu.Exceptions
  2. {
  3. static class GpuExceptionHelper
  4. {
  5. private const string CallCountExceeded = "Method call count exceeded the limit allowed per run!";
  6. public static void ThrowCallCoundExceeded()
  7. {
  8. throw new GpuException(CallCountExceeded);
  9. }
  10. }
  11. }