MemoryNotContiguousException.cs 475 B

12345678910111213141516171819
  1. using System;
  2. namespace Ryujinx.Memory
  3. {
  4. public class MemoryNotContiguousException : Exception
  5. {
  6. public MemoryNotContiguousException() : base("The specified memory region is not contiguous.")
  7. {
  8. }
  9. public MemoryNotContiguousException(string message) : base(message)
  10. {
  11. }
  12. public MemoryNotContiguousException(string message, Exception innerException) : base(message, innerException)
  13. {
  14. }
  15. }
  16. }