Spotify.NET/SpotifyAPI.Web/Exceptions/APIUnauthorizedException.cs
2020-05-01 20:05:28 +02:00

11 lines
221 B
C#

using SpotifyAPI.Web.Http;
namespace SpotifyAPI.Web
{
[System.Serializable]
public class APIUnauthorizedException : APIException
{
public APIUnauthorizedException(IResponse response) : base(response) { }
}
}