blob: 1066730c1ef16c1a96b821a62136fcad111103c2 [file] [log] [blame]
namespace DotPulsar.Exceptions
{
using System;
public sealed class PulsarClientDisposedException : ObjectDisposedException
{
public PulsarClientDisposedException() : base(typeof(PulsarClient).FullName) { }
}
}