C# Class dk.nita.saml20.Saml20Exception

This exception is thrown to indicate an error in the SAML2 toolkit. It was introduced to make it easy to distinguish between exceptions thrown deliberately by the toolkit, and exceptions that are thrown as the result of bugs.
Inheritance: System.Exception
Afficher le fichier Open project: symplified/Symplified.Auth

Méthodes publiques

Méthode Description
Saml20Exception ( ) : System

Initializes a new instance of the Saml20Exception class.

Saml20Exception ( string msg ) : System

Initializes a new instance of the Saml20Exception class.

Saml20Exception ( string msg, Exception cause ) : System

Initializes a new instance of the Saml20Exception class.

Method Details

Saml20Exception() public méthode

Initializes a new instance of the Saml20Exception class.
public Saml20Exception ( ) : System
Résultat System

Saml20Exception() public méthode

Initializes a new instance of the Saml20Exception class.
public Saml20Exception ( string msg ) : System
msg string The MSG.
Résultat System

Saml20Exception() public méthode

Initializes a new instance of the Saml20Exception class.
public Saml20Exception ( string msg, Exception cause ) : System
msg string A message describing the problem that caused the exception.
cause System.Exception Another exception that may be related to the problem.
Résultat System