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

17 lines
307 B
C#
Raw Normal View History

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