aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Security/AuthenticationException.cs
blob: f4ba2fb630af887a1b780ad343df0fad5a6e328d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace MediaBrowser.Server.Implementations.Security
{
    public class AuthenticationException : Exception
    {
        public AuthenticationException(string message)
            : base(message)
        {
        }

        public AuthenticationException()
        {
        }
    }
}