12 lines
322 B
C#
12 lines
322 B
C#
|
namespace Ryujinx.HLE.Gpu.Exceptions
|
||
|
{
|
||
|
static class GpuExceptionHelper
|
||
|
{
|
||
|
private const string CallCountExceeded = "Method call count exceeded the limit allowed per run!";
|
||
|
|
||
|
public static void ThrowCallCoundExceeded()
|
||
|
{
|
||
|
throw new GpuException(CallCountExceeded);
|
||
|
}
|
||
|
}
|
||
|
}
|