mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
367 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |