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