aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-10-16 02:30:36 +0200
committerjduncanator <1518948+jduncanator@users.noreply.github.com>2019-10-16 11:30:36 +1100
commitc0fe6cdca0ebe6b19f8578893ec503d432683897 (patch)
treec5dea471d29739159264a6df52599bd9fc465b7b /Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
parent17d3c75df493434e7207c1a9fedc9d45d5a9100a (diff)
Move InvalidSystemResourceException with the other Exceptions (#794)
* Move InvalidSystemResourceException with the other `InvalidSystemResourceException.cs` was in `Ryujinx.HLE/Resource` who didn't make sense since it's the only file in the folder, and other exceptions class are in `Ryujinx.HLE/Exceptions`. * Fix empty lines
Diffstat (limited to 'Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs')
-rw-r--r--Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs9
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