jellyfin/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs

17 lines
307 B
C#
Raw Normal View History

2014-07-22 03:29:06 +02:00
using System;
namespace MediaBrowser.Server.Implementations.Security
{
public class AuthenticationException : Exception
{
public AuthenticationException(string message)
: base(message)
{
}
public AuthenticationException()
{
}
}
}