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/MemoryProtectionException.cs | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Ryujinx.Memory/MemoryProtectionException.cs (limited to 'Ryujinx.Memory/MemoryProtectionException.cs') diff --git a/Ryujinx.Memory/MemoryProtectionException.cs b/Ryujinx.Memory/MemoryProtectionException.cs deleted file mode 100644 index 27e950a1..00000000 --- a/Ryujinx.Memory/MemoryProtectionException.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; - -namespace Ryujinx.Memory -{ - class MemoryProtectionException : Exception - { - public MemoryProtectionException() - { - } - - public MemoryProtectionException(MemoryPermission permission) : base($"Failed to set memory protection to \"{permission}\".") - { - } - - public MemoryProtectionException(string message) : base(message) - { - } - - public MemoryProtectionException(string message, Exception innerException) : base(message, innerException) - { - } - } -} -- cgit v1.2.3