mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 10:43:31 +00:00
24 lines
513 B
C#
24 lines
513 B
C#
using System;
|
|
|
|
namespace Artemis.UI.Shared;
|
|
|
|
/// <summary>
|
|
/// Represents errors that occur within the Artemis router.
|
|
/// </summary>
|
|
public class ArtemisRoutingException : Exception
|
|
{
|
|
/// <inheritdoc />
|
|
public ArtemisRoutingException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ArtemisRoutingException(string? message) : base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ArtemisRoutingException(string? message, Exception? innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |