InvalidMemoryRegionException.cs
1 using System; 2 3 namespace Ryujinx.Memory 4 { 5 public class InvalidMemoryRegionException : Exception 6 { 7 public InvalidMemoryRegionException() : base("Attempted to access an invalid memory region.") 8 { 9 } 10 11 public InvalidMemoryRegionException(string message) : base(message) 12 { 13 } 14 15 public InvalidMemoryRegionException(string message, Exception innerException) : base(message, innerException) 16 { 17 } 18 } 19 }