mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-07 21:14:58 +00:00
23 lines
555 B
C#
23 lines
555 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|