aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/InternalServiceException.cs
blob: 85de63a6a4477e7d2f251a18c7f2cce540422160 (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) { }
    }
}