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