forked from i8beef/SAML2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaml20ConfigurationException.cs
More file actions
28 lines (25 loc) · 1.09 KB
/
Copy pathSaml20ConfigurationException.cs
File metadata and controls
28 lines (25 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
namespace SAML2.Exceptions
{
/// <summary>
/// This exception is thrown to indicate an error in the SAML2 configuration.
/// </summary>
public class Saml20ConfigurationException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="Saml20ConfigurationException"/> class.
/// </summary>
public Saml20ConfigurationException() { }
/// <summary>
/// Initializes a new instance of the <see cref="Saml20ConfigurationException"/> class.
/// </summary>
/// <param name="msg">The MSG.</param>
public Saml20ConfigurationException(string msg) : base(msg) { }
/// <summary>
/// Initializes a new instance of the <see cref="Saml20ConfigurationException"/> class.
/// </summary>
/// <param name="msg">A message describing the problem that caused the exception.</param>
/// <param name="cause">Another exception that may be related to the problem.</param>
public Saml20ConfigurationException(string msg, Exception cause) : base(msg, cause) { }
}
}