mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
22 lines
508 B
C#
22 lines
508 B
C#
using System;
|
|
|
|
namespace Artemis.UI.Shared
|
|
{
|
|
/// <summary>
|
|
/// Represents errors that occur within the Artemis Shared UI library
|
|
/// </summary>
|
|
public class ArtemisSharedUIException : Exception
|
|
{
|
|
internal ArtemisSharedUIException()
|
|
{
|
|
}
|
|
|
|
internal ArtemisSharedUIException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
internal ArtemisSharedUIException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
} |