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