C# Class BCrypt.Net.SaltParseException

Exception for signalling parse errors.
Inheritance: System.Exception
Datei anzeigen Open project: neoKushan/BCrypt.Net-Core

Public Methods

Method Description
SaltParseException ( ) : System

Default constructor.

SaltParseException ( string message ) : System

Initializes a new instance of SaltParseException.

SaltParseException ( string message, Exception innerException ) : System

Initializes a new instance of SaltParseException.

Method Details

SaltParseException() public method

Default constructor.
public SaltParseException ( ) : System
return System

SaltParseException() public method

Initializes a new instance of SaltParseException.
public SaltParseException ( string message ) : System
message string The message.
return System

SaltParseException() public method

Initializes a new instance of SaltParseException.
public SaltParseException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System