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