Class OpenIddictExceptions.GenericException
Represents a generic OpenIddict exception.
Inheritance
System.Object
OpenIddictExceptions.GenericException
Namespace: OpenIddict.Abstractions
Assembly: cs.temp.dll.dll
Syntax
public class GenericException : Exception
Constructors
GenericException(String)
Creates a new OpenIddictExceptions.GenericException.
Declaration
public GenericException(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The exception message. |
GenericException(String, String)
Creates a new OpenIddictExceptions.GenericException.
Declaration
public GenericException(string message, string error)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The exception message. |
System.String | error | The error type. |
GenericException(String, String, String)
Creates a new OpenIddictExceptions.GenericException.
Declaration
public GenericException(string message, string error, string description)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The exception message. |
System.String | error | The error type. |
System.String | description | The error description. |
GenericException(String, String, String, String)
Creates a new OpenIddictExceptions.GenericException.
Declaration
public GenericException(string message, string error, string description, string uri)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The exception message. |
System.String | error | The error type. |
System.String | description | The error description. |
System.String | uri | The error URI. |
Properties
Error
Gets the error type.
Declaration
public string Error { get; }
Property Value
Type | Description |
---|---|
System.String |
ErrorDescription
Gets the error description.
Declaration
public string ErrorDescription { get; }
Property Value
Type | Description |
---|---|
System.String |
ErrorUri
Gets the error URI.
Declaration
public string ErrorUri { get; }
Property Value
Type | Description |
---|---|
System.String |