From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Memory/MemoryNotContiguousException.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Ryujinx.Memory/MemoryNotContiguousException.cs (limited to 'Ryujinx.Memory/MemoryNotContiguousException.cs') 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 -- cgit v1.2.3