aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/ShaderException.cs
blob: 9bc87ff3dbd13e53aa4e7133d7a944d2d577f831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Ryujinx.Graphics.Gal
{
    class ShaderException : Exception
    {
        public ShaderException() : base() { }

        public ShaderException(string Message) : base(Message) { }
    }
}