Spotify.NET/SpotifyAPI.Web/Exceptions/APIUnauthorizedException.cs

11 lines
221 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
using SpotifyAPI.Web.Http;
namespace SpotifyAPI.Web
{
[System.Serializable]
public class APIUnauthorizedException : APIException
{
public APIUnauthorizedException(IResponse response) : base(response) { }
}
}