1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI/Exceptions/ArtemisUIException.cs
SpoinkyNL 4e1a09308f Data model visualization - Simplified and improved VMs
Layer conditions - Added left side property selection
2020-07-05 15:34:16 +02:00

19 lines
367 B
C#

using System;
namespace Artemis.UI.Exceptions
{
public class ArtemisUIException : Exception
{
public ArtemisUIException()
{
}
public ArtemisUIException(string message) : base(message)
{
}
public ArtemisUIException(string message, Exception inner) : base(message, inner)
{
}
}
}