aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InvalidSvcException.cs
blob: f2e28bb7b77b5856774fc5e9ed1876480de35c41 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System;

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