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

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