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
This commit is contained in:
parent
17d3c75df4
commit
c0fe6cdca0
4 changed files with 12 additions and 15 deletions
9
Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
Normal file
9
Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.Exceptions
|
||||
{
|
||||
public class InvalidSystemResourceException : Exception
|
||||
{
|
||||
public InvalidSystemResourceException(string message) : base(message) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue