mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 18:21:13 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
20 lines
473 B
C#
20 lines
473 B
C#
using System;
|
|
|
|
namespace Ryujinx.Memory
|
|
{
|
|
public class MemoryNotContiguousException : Exception
|
|
{
|
|
public MemoryNotContiguousException() : base("The specified memory region is not contiguous.")
|
|
{
|
|
}
|
|
|
|
public MemoryNotContiguousException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public MemoryNotContiguousException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|