MemoryProtectionException.cs 246 B

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