using System.Net;
using JetBrains.Annotations;
namespace JetBrains.Space.Common;
///
/// Represents an exception thrown when a refresh token is revoked.
///
[PublicAPI]
public class RefreshTokenRevokedException
: ResourceException
{
///
public RefreshTokenRevokedException()
{
}
///
public RefreshTokenRevokedException(string message)
: base(message)
{
}
///
public RefreshTokenRevokedException(string message, Uri? requestUri, string? functionName, HttpStatusCode statusCode, string? response)
: base(message, requestUri, functionName, statusCode, response)
{
}
}