blob: 4a03b65cb920d1eefd0dd796d0260a568e4533e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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)) { }
}
}
|