| 12345678910111213 |
- using System;
- namespace ChocolArm64.Exceptions
- {
- public class VmmAccessException : Exception
- {
- private const string ExMsg = "Memory region at 0x{0} with size 0x{1} is not contiguous!";
- public VmmAccessException() { }
- public VmmAccessException(long position, long size) : base(string.Format(ExMsg, position, size)) { }
- }
- }
|