Ryujinx/src/Ryujinx.Memory/MemoryProtectionException.cs
TSRBerry 2989c163a8
editorconfig: Set default encoding to UTF-8 (#5793)
* editorconfig: Add default charset

* Change file encoding from UTF-8-BOM to UTF-8
2023-12-04 14:17:13 +01:00

25 lines
629 B
C#

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)
{
}
}
}