aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/ShaderException.cs
blob: b0aff42bf5ed39861d62b1db8bbfc785eec34a65 (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) { }
    }
}