Tapeti/Tapeti/Exceptions/NackException.cs

15 lines
317 B
C#

using System;
namespace Tapeti.Exceptions
{
/// <inheritdoc />
/// <summary>
/// Raised when a message is nacked by the message bus.
/// </summary>
public class NackException : Exception
{
/// <inheritdoc />
public NackException(string message) : base(message) { }
}
}