mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
ColorGradient - Fixed GetColor returning the first stop if position was after the last stop
21 lines
420 B
C#
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)
|
|
{
|
|
}
|
|
} |