using System;
namespace Artemis.UI.Shared;
///
/// Represents errors that occur within the Artemis router.
///
public class ArtemisRoutingException : Exception
{
///
public ArtemisRoutingException()
{
}
///
public ArtemisRoutingException(string? message) : base(message)
{
}
///
public ArtemisRoutingException(string? message, Exception? innerException) : base(message, innerException)
{
}
}