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