mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
17 lines
307 B
C#
17 lines
307 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Security
|
|
{
|
|
public class AuthenticationException : Exception
|
|
{
|
|
public AuthenticationException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public AuthenticationException()
|
|
{
|
|
}
|
|
}
|
|
}
|