2020-07-30 09:16:41 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Memory
|
|
|
|
|
{
|
|
|
|
|
public class InvalidMemoryRegionException : Exception
|
|
|
|
|
{
|
2020-12-24 22:09:02 -05:00
|
|
|
|
public InvalidMemoryRegionException() : base("Attempted to access an invalid memory region.")
|
2020-07-30 09:16:41 -04:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public InvalidMemoryRegionException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public InvalidMemoryRegionException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|