mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-11 07:07:18 -05:00
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) { }
|
|
}
|
|
}
|