mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-01 20:43:33 +01:00
16 lines
307 B
C#
16 lines
307 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Security
|
|
{
|
|
public class AuthenticationException : Exception
|
|
{
|
|
public AuthenticationException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public AuthenticationException()
|
|
{
|
|
}
|
|
}
|
|
}
|