aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Exceptions/InternalServiceException.cs
blob: e0ee5eb91a5b48e4d7d956bbe5c0ad4b2ece86a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System;

namespace Ryujinx.HLE.Exceptions
{
    class InternalServiceException : Exception
    {
        public InternalServiceException(string message) : base(message) { }
    }
}