aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs
blob: c0bce5a52c639edd845038be807ad41859e76c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Ryujinx.HLE.Gpu.Exceptions
{
    class GpuException : Exception
    {
        public GpuException() : base() { }

        public GpuException(string ExMsg) : base(ExMsg) { }
    }
}