VmmOutOfMemoryException.cs 332 B

12345678910111213
  1. using System;
  2. namespace ChocolArm64.Exceptions
  3. {
  4. public class VmmOutOfMemoryException : Exception
  5. {
  6. private const string ExMsg = "Failed to allocate {0} bytes of memory!";
  7. public VmmOutOfMemoryException() { }
  8. public VmmOutOfMemoryException(long Size) : base(string.Format(ExMsg, Size)) { }
  9. }
  10. }