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