Tapeti/Tapeti/Exceptions/NoRouteException.cs

15 lines
317 B
C#

using System;
namespace Tapeti.Exceptions
{
/// <inheritdoc />
/// <summary>
/// Raised when a mandatory message has no route.
/// </summary>
public class NoRouteException : Exception
{
/// <inheritdoc />
public NoRouteException(string message) : base(message) { }
}
}