From c0fe6cdca0ebe6b19f8578893ec503d432683897 Mon Sep 17 00:00:00 2001
From: Ac_K <Acoustik666@gmail.com>
Date: Wed, 16 Oct 2019 02:30:36 +0200
Subject: 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
---
 Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs

(limited to 'Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs')

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
-- 
cgit v1.2.3-70-g09d2