Click or drag to resize

CodedArgumentNullOrEmptyException Constructor (String, String)

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the CodedArgumentNullOrEmptyException class with a specified error message and the name of the parameter that causes this exception.

Namespace:  NerdyDuck.CodedExceptions
Assembly:  NerdyDuck.CodedExceptions (in NerdyDuck.CodedExceptions.dll) Version: 2.0.0+2040dad
Syntax
public CodedArgumentNullOrEmptyException(
	string paramName,
	string message
)
View Source

Parameters

paramName
Type: SystemString
The name of the parameter that caused the current exception.
message
Type: SystemString
The error message that explains the reason for the exception.
Remarks

This constructor initializes the Message property of the new instance using the value of the message parameter. The content of the message parameter is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

This constructor initializes the ParamName property of the new instance using paramName. The content of paramName is intended to be understood by humans.

See Also