VmmPageFaultException.cs 338 B

12345678910111213
  1. using System;
  2. namespace ChocolArm64.Exceptions
  3. {
  4. public class VmmPageFaultException : Exception
  5. {
  6. private const string ExMsg = "Tried to access unmapped address 0x{0:x16}!";
  7. public VmmPageFaultException() { }
  8. public VmmPageFaultException(long Position) : base(string.Format(ExMsg, Position)) { }
  9. }
  10. }