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