mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03: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()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|