using System; namespace Jellyfin.Plugin.Simkl.API.Exceptions { /// public class InvalidTokenException : Exception { /// /// Initializes a new instance of the class. /// public InvalidTokenException() { } /// /// Initializes a new instance of the class. /// /// The message. public InvalidTokenException(string msg) : base(msg) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public InvalidTokenException(string msg, Exception inner) : base(msg, inner) { } } }