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
Datei anzeigen Open project: symplified/Symplified.Auth

Public Methods

Method 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 method

Initializes a new instance of the Saml20Exception class.
public Saml20Exception ( ) : System
return System

Saml20Exception() public method

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

Saml20Exception() public method

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.
return System