C# Class Microsoft.Toolkit.Services.OAuthKeysNotPresentException

Exception for no OAuth keys being present.
Inheritance: Exception
Show file Open project: unoplatform/Uno.WindowsCommunityToolkit

Public Methods

Method Description
OAuthKeysNotPresentException ( ) : System

Initializes a new instance of the OAuthKeysNotPresentException class. Default constructor.

OAuthKeysNotPresentException ( string key ) : System

Initializes a new instance of the OAuthKeysNotPresentException class. Constructor with information on missing key.

OAuthKeysNotPresentException ( string message, Exception innerException ) : System

Initializes a new instance of the OAuthKeysNotPresentException class. Constructor with additional message and inner exception.

Method Details

OAuthKeysNotPresentException() public method

Initializes a new instance of the OAuthKeysNotPresentException class. Default constructor.
public OAuthKeysNotPresentException ( ) : System
return System

OAuthKeysNotPresentException() public method

Initializes a new instance of the OAuthKeysNotPresentException class. Constructor with information on missing key.
public OAuthKeysNotPresentException ( string key ) : System
key string Name of the missing key.
return System

OAuthKeysNotPresentException() public method

Initializes a new instance of the OAuthKeysNotPresentException class. Constructor with additional message and inner exception.
public OAuthKeysNotPresentException ( string message, Exception innerException ) : System
message string Additional exception message.
innerException Exception Reference to inner exception.
return System