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