mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04: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()
|
|
{
|
|
}
|
|
}
|
|
}
|