2019-05-21 10:28:34 -07:00
|
|
|
using System;
|
2019-06-09 13:08:01 -07:00
|
|
|
|
2019-05-21 10:28:34 -07:00
|
|
|
namespace MediaBrowser.Controller.Authentication
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The exception that is thrown when an attempt to authenticate fails.
|
|
|
|
/// </summary>
|
|
|
|
public class AuthenticationException : Exception
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public AuthenticationException() : base()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public AuthenticationException(string message) : base(message)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public AuthenticationException(string message, Exception innerException)
|
|
|
|
: base(message, innerException)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|