C# Class Tailspin.Surveys.Web.Security.AuthenticationException

Exception occurs when token in TokenCache is expired/ missing.
Inheritance: System.Exception
Show file Open project: Azure-Samples/guidance-identity-management-for-multitenant-apps

Public Methods

Method Description
AuthenticationException ( ) : System

Initializes with defaults.

AuthenticationException ( string message ) : System

Initializes with a specified error message.

AuthenticationException ( string message, Exception innerException ) : System

Initializes with a specified error message and a reference to the inner exception that is the cause of this exception.

Method Details

AuthenticationException() public method

Initializes with defaults.
public AuthenticationException ( ) : System
return System

AuthenticationException() public method

Initializes with a specified error message.
public AuthenticationException ( string message ) : System
message string A message that describes the error.
return System

AuthenticationException() public method

Initializes with a specified error message and a reference to the inner exception that is the cause of this exception.
public AuthenticationException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception. ///
innerException System.Exception /// The exception that is the cause of the current exception. If the innerException parameter /// is not a null reference, the current exception is raised in a catch block that handles the inner exception. ///
return System