using System;
namespace RudderSdk.Core;
///
/// The request never got a response: DNS/connectivity failure or client-side
/// timeout. is 0. Retrying is safe
/// for idempotent operations.
///
public sealed class RudderNetworkException : RudderApiException
{
/// Creates the exception.
public RudderNetworkException(string message, Exception? innerException = null)
: base(0, string.Empty, message, null, innerException)
{
}
}