ConfigurationException Constructor
ConfigurationException()
Initializes a new instance of the ConfigurationException class.
Declaration
public ConfigurationException()
ConfigurationException(String)
Initializes a new instance of the ConfigurationException class with a specified error message.
Declaration
public ConfigurationException(string message)
Parameters
String | message | The message that describes the error. |
ConfigurationException(Exception)
Initializes a new instance of the ConfigurationException class with a reference to the inner exception that is the cause of this exception.
Declaration
public ConfigurationException(Exception innerException)
Parameters
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ConfigurationException(String, Exception)
Initializes a new instance of the ConfigurationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ConfigurationException(string message, Exception innerException)
Parameters
String | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |