Spotify.NET/SpotifyAPI.Web/Exceptions/APIPagingException.cs
Jonas Dellinger cb2e0cccc8 run formatter
2022-11-27 13:29:35 +01:00

32 lines
902 B
C#

using System;
using System.Globalization;
using System.Runtime.Serialization;
using SpotifyAPI.Web.Http;
namespace SpotifyAPI.Web
{
[Serializable]
public class APIPagingException : APIException
{
public TimeSpan RetryAfter { get; }
public APIPagingException(IResponse response) : base(response)
{
Ensure.ArgumentNotNull(response, nameof(response));
if (response.Headers.TryGetValue("Retry-After", out string? retryAfter))
{
RetryAfter = TimeSpan.FromSeconds(int.Parse(retryAfter, CultureInfo.InvariantCulture));
}
}
public APIPagingException() { }
public APIPagingException(string message) : base(message) { }
public APIPagingException(string message, Exception innerException) : base(message, innerException) { }
protected APIPagingException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}