using System; using System.Runtime.InteropServices; namespace Ryujinx.Memory { class MemoryProtectionException : Exception { public MemoryProtectionException() { } public MemoryProtectionException(MemoryPermission permission) : base($"Failed to set memory protection to \"{permission}\": {Marshal.GetLastPInvokeErrorMessage()}") { } public MemoryProtectionException(string message) : base(message) { } public MemoryProtectionException(string message, Exception innerException) : base(message, innerException) { } } }