1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-01-02 10:43:31 +00:00
Artemis/src/Artemis.UI.Shared/Exceptions/ArtemisRoutingException.cs
2023-10-18 23:13:57 +02:00

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)
{
}
}