aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs b/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
deleted file mode 100644
index baa0ab99..00000000
--- a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace Ryujinx.Graphics.Nvdec.Vp9
-{
- class InternalErrorException : Exception
- {
- public InternalErrorException(string message) : base(message)
- {
- }
-
- public InternalErrorException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
-}