Class UnauthenticatedUserException
The exception that is thrown when a user is not authenticated.
Inherited Members
Namespace: IRM.IdentityModel.Claims
Assembly: IRM.dll
Syntax
[Serializable]
public class UnauthenticatedUserException : Exception, ISerializable, _Exception
Constructors
UnauthenticatedUserException()
Initializes a new instance of the UnauthenticatedUserException class.
Declaration
public UnauthenticatedUserException()
UnauthenticatedUserException(SerializationInfo, StreamingContext)
Initializes a new instance of the UnauthenticatedUserException class with serialized data.
Declaration
public UnauthenticatedUserException(SerializationInfo info, StreamingContext context)
Parameters
SerializationInfo
info
The object that holds the serialized object data. |
StreamingContext
context
The contextual information about the source or destination. |
UnauthenticatedUserException(String)
Initializes a new instance of the UnauthenticatedUserException class with a specified error message.
Declaration
public UnauthenticatedUserException(string message)
Parameters
String
message
An error message that explains the reason for the current exception. |
UnauthenticatedUserException(String, Exception)
Initializes a new instance of the UnauthenticatedUserException class with a specified error message and a reference to the inner exception that caused the current exception.
Declaration
public UnauthenticatedUserException(string message, Exception innerException)
Parameters
String
message
An error message that explains the reason for the current exception. |
Exception
innerException
The exception that caused 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. |