Spotify.NET/SpotifyAPI.Web/Exceptions/APITooManyRequestsException.cs
2020-06-02 23:55:50 +02:00

32 lines
955 B
C#

using System.Globalization;
using System.Runtime.Serialization;
using System;
using SpotifyAPI.Web.Http;
namespace SpotifyAPI.Web
{
[Serializable]
public class APITooManyRequestsException : APIException
{
public TimeSpan RetryAfter { get; }
public APITooManyRequestsException(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 APITooManyRequestsException() { }
public APITooManyRequestsException(string message) : base(message) { }
public APITooManyRequestsException(string message, Exception innerException) : base(message, innerException) { }
protected APITooManyRequestsException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}