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()
|
|
{
|
|
}
|
|
}
|
|
}
|