blob: 5618e19ff2071bf2c0525f7a54c7cbaffa07fc1e [file] [log] [blame]
using DotPulsar.Exceptions;
namespace DotPulsar.Internal.Exceptions
{
public sealed class StreamNotReadyException : DotPulsarException
{
public StreamNotReadyException() : base("The service is not ready yet") { }
}
}