2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
19 lines
473 B
C#
19 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)
|
|
{
|
|
}
|
|
}
|
|
}
|