blob: c11206b601df7d0e7b8eae6723592f74cbe18b8f [file] [log] [blame]
namespace DotPulsar.Exceptions
{
using System;
using Internal;
public sealed class ConsumerDisposedException : ObjectDisposedException
{
public ConsumerDisposedException() : base(typeof(Consumer).FullName) { }
}
}