mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
21 lines
611 B
C#
21 lines
611 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using SpotifyAPI.Web.Http;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
[Serializable]
|
|
public class APIUnauthorizedException : APIException
|
|
{
|
|
public APIUnauthorizedException(IResponse response) : base(response) { }
|
|
|
|
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) { }
|
|
}
|
|
}
|