mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-17 22:31:58 +00:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
10 lines
206 B
C#
10 lines
206 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidSystemResourceException : Exception
|
|
{
|
|
public InvalidSystemResourceException(string message) : base(message) { }
|
|
}
|
|
}
|