1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-16 12:28:15 -06:00
gdkchan 0039bb6394
Refactor SVC handler ()
* Refactor SVC handler

* Get rid of KernelErr

* Split kernel code files into multiple folders
2018-12-18 03:33:36 -02:00

10 lines
199 B
C#

using System;
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
{
public class InvalidSvcException : Exception
{
public InvalidSvcException(string message) : base(message) { }
}
}