aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Gpu/Exceptions')
-rw-r--r--Ryujinx.HLE/Gpu/Exceptions/GpuException.cs11
-rw-r--r--Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs12
2 files changed, 0 insertions, 23 deletions
diff --git a/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs b/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs
deleted file mode 100644
index c0bce5a5..00000000
--- a/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-namespace Ryujinx.HLE.Gpu.Exceptions
-{
- class GpuException : Exception
- {
- public GpuException() : base() { }
-
- public GpuException(string ExMsg) : base(ExMsg) { }
- }
-} \ No newline at end of file
diff --git a/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs b/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs
deleted file mode 100644
index aeab9a29..00000000
--- a/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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);
- }
- }
-} \ No newline at end of file