mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			638 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			638 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Authentication
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The exception that is thrown when an attempt to authenticate fails.
 | 
						|
    /// </summary>
 | 
						|
    public class AuthenticationException : Exception
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        public AuthenticationException() : base()
 | 
						|
        {
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        public AuthenticationException(string message) : base(message)
 | 
						|
        {
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        public AuthenticationException(string message, Exception innerException)
 | 
						|
            : base(message, innerException)
 | 
						|
        {
 | 
						|
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |