2020-05-05 14:30:00 +01:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
using System;
|
2020-05-01 19:05:28 +01:00
|
|
|
using SpotifyAPI.Web.Http;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
2020-05-05 14:30:00 +01:00
|
|
|
[Serializable]
|
2020-05-01 19:05:28 +01:00
|
|
|
public class APIUnauthorizedException : APIException
|
|
|
|
{
|
|
|
|
public APIUnauthorizedException(IResponse response) : base(response) { }
|
2020-05-05 14:30:00 +01:00
|
|
|
|
|
|
|
public APIUnauthorizedException() { }
|
|
|
|
|
|
|
|
public APIUnauthorizedException(string message) : base(message) { }
|
|
|
|
|
|
|
|
public APIUnauthorizedException(string message, Exception innerException) : base(message, innerException) { }
|
|
|
|
|
|
|
|
protected APIUnauthorizedException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
2020-05-01 19:05:28 +01:00
|
|
|
}
|
|
|
|
}
|