aboutsummaryrefslogtreecommitdiff
path: root/Unicity.Renderer/WindowCreationFailedException.cs
blob: 380ffb6fff5976d5628bb6d6d2d5a79851c4e7b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Unicity.Renderer
{
    class WindowCreationFailedException : System.Exception
    {
        public WindowCreationFailedException(string message) : base(message)
        {

        }
    }
}