1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-02-04 02:43:32 +00:00
Artemis/src/Artemis.UI.Shared/Exceptions/ArtemisRoutingException.cs
RobertBeekman 962b13c6ed
UI - Added routing (#802)
ColorGradient - Fixed GetColor returning the first stop if position was after the last stop
2023-07-02 22:15:38 +02:00

21 lines
420 B
C#

using System;
namespace Artemis.UI.Shared;
public class ArtemisRoutingException : Exception
{
/// <inheritdoc />
public ArtemisRoutingException()
{
}
/// <inheritdoc />
public ArtemisRoutingException(string? message) : base(message)
{
}
/// <inheritdoc />
public ArtemisRoutingException(string? message, Exception? innerException) : base(message, innerException)
{
}
}