using System;
namespace MediaBrowser.Controller.Net
{
///
/// The exception that is thrown when a user is authenticated, but not authorized to access a requested resource.
///
public class SecurityException : Exception
{
///
/// Initializes a new instance of the class.
///
public SecurityException()
: base()
{
}
///
/// Initializes a new instance of the class.
///
/// The message that describes the error.
public SecurityException(string message)
: base(message)
{
}
///
/// Initializes a new instance of the class.
///
/// The message that describes the error.
/// The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
public SecurityException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}