mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 10:05:10 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
24 lines
629 B
C#
24 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)
|
|
{
|
|
}
|
|
}
|
|
}
|