blob: 328cc702fed4a7138e78ab02d39a7bf60c0ec720 [file] [log] [blame]
using DotPulsar.Exceptions;
namespace DotPulsar.Internal.Exceptions
{
public sealed class ConsumerNotFoundException : DotPulsarException
{
public ConsumerNotFoundException(string message) : base(message) { }
}
}