diff options
Diffstat (limited to 'Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs')
-rw-r--r-- | Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs b/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs new file mode 100644 index 00000000..3c63e064 --- /dev/null +++ b/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs @@ -0,0 +1,9 @@ +using System; + +namespace Ryujinx.HLE.Exceptions +{ + public class InvalidSystemResourceException : Exception + { + public InvalidSystemResourceException(string message) : base(message) { } + } +}
\ No newline at end of file |