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