mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-05 14:32:57 -06:00
![Ac_K](/assets/img/avatar_default.png)
* 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
9 lines
208 B
C#
9 lines
208 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidSystemResourceException : Exception
|
|
{
|
|
public InvalidSystemResourceException(string message) : base(message) { }
|
|
}
|
|
} |