Ryujinx/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
Ac_K c0fe6cdca0 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
2019-10-16 11:30:36 +11:00

9 lines
208 B
C#

using System;
namespace Ryujinx.HLE.Exceptions
{
public class InvalidSystemResourceException : Exception
{
public InvalidSystemResourceException(string message) : base(message) { }
}
}