mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 18:15:25 +00:00
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);
|
||
|
}
|
||
|
}
|
||
|
}
|