aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/MemoryNotContiguousException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Memory/MemoryNotContiguousException.cs')
-rw-r--r--Ryujinx.Memory/MemoryNotContiguousException.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Memory/MemoryNotContiguousException.cs b/Ryujinx.Memory/MemoryNotContiguousException.cs
deleted file mode 100644
index 3106955b..00000000
--- a/Ryujinx.Memory/MemoryNotContiguousException.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-
-namespace Ryujinx.Memory
-{
- public class MemoryNotContiguousException : Exception
- {
- public MemoryNotContiguousException() : base("The specified memory region is not contiguous.")
- {
- }
-
- public MemoryNotContiguousException(string message) : base(message)
- {
- }
-
- public MemoryNotContiguousException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
-} \ No newline at end of file