0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-18 20:21:41 +00:00
ryujinx-fork/Ryujinx.Memory/MemoryProtectionException.cs

24 lines
555 B
C#
Raw Normal View History

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