mirror of
https://github.com/Ryujinx/ChocolArm64.git
synced 2024-11-09 23:48:40 +00:00
10 lines
257 B
C#
10 lines
257 B
C#
|
using System;
|
||
|
|
||
|
namespace ChocolArm64.Memory
|
||
|
{
|
||
|
class MemoryProtectionException : Exception
|
||
|
{
|
||
|
public MemoryProtectionException(MemoryProtection protection) :
|
||
|
base($"Failed to set memory protection to \"{protection}\".") { }
|
||
|
}
|
||
|
}
|