VmmOutOfMemoryException.cs 360 B

12345678910111213
  1. using System;
  2. namespace ChocolArm64.Exceptions
  3. {
  4. public class VmmAccessException : Exception
  5. {
  6. private const string ExMsg = "Memory region at 0x{0} with size 0x{1} is not contiguous!";
  7. public VmmAccessException() { }
  8. public VmmAccessException(long Position, long Size) : base(string.Format(ExMsg, Position, Size)) { }
  9. }
  10. }