MemoryProtectionException.cs 257 B

12345678910
  1. using System;
  2. namespace ChocolArm64.Memory
  3. {
  4. class MemoryProtectionException : Exception
  5. {
  6. public MemoryProtectionException(MemoryProtection protection) :
  7. base($"Failed to set memory protection to \"{protection}\".") { }
  8. }
  9. }