jellyfin/MediaBrowser.Controller/Net/SecurityException.cs

38 lines
1.3 KiB
C#
Raw Normal View History

using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// The exception that is thrown when a user is authenticated, but not authorized to access a requested resource.
/// </summary>
2018-12-27 18:27:57 -05:00
public class SecurityException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="SecurityException"/> class.
/// </summary>
public SecurityException()
: base()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="SecurityException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
2018-12-27 18:27:57 -05:00
public SecurityException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="SecurityException"/> class.
/// </summary>
2020-06-19 06:21:49 -04:00
/// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
public SecurityException(string message, Exception innerException)
: base(message, innerException)
{
}
2018-12-27 18:27:57 -05:00
}
}