1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/Tapeti/Exceptions/NackException.cs
Mark van Renswoude bcdb376256 Fixed queue arguments error due to wrong value types
Added test for publish overflows
Removed support for Unity Container
Changed third party package references to ranges
Fixed XML documentation
2022-11-22 13:20:47 +01:00

14 lines
294 B
C#

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