ProducerConfirmTimeOutException.cs
327 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace Pole.Core.Exceptions
{
public class ProducerConfirmTimeOutException : Exception
{
public ProducerConfirmTimeOutException(int timeout) : base($"Producer wait to confirm for {timeout} seconds, timeout")
{
}
}
}