Skip to content
Docs Try Aspire

MissingParameterValueException Constructors

Class Constructors 2 members
The exception that is thrown when a parameter resource cannot be initialized because its value is missing or cannot be resolved.
Initializes a new instance of the MissingParameterValueException class with a specified error message.
public class MissingParameterValueException
{
public MissingParameterValueException(
string message)
{
// ...
}
}
message string The message that describes the error.
Initializes a new instance of the MissingParameterValueException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public class MissingParameterValueException
{
public MissingParameterValueException(
string message,
Exception innerException)
{
// ...
}
}
message string The error message that explains the reason for the exception.
innerException Exception The exception that is the cause of the current exception, or a null reference if no inner exception is specified.