Table of Contents

Class ArgumentReservedKeywordException

Namespace
Cuemon
Assembly
Cuemon.Core.dll

The exception that is thrown when the value of an argument is a reserved keyword.

public class ArgumentReservedKeywordException : ArgumentOutOfRangeException, ISerializable
Inheritance
ArgumentReservedKeywordException
Implements
Inherited Members

Constructors

ArgumentReservedKeywordException()

Initializes a new instance of the ArgumentReservedKeywordException class.

public ArgumentReservedKeywordException()

ArgumentReservedKeywordException(String)

Initializes a new instance of the ArgumentReservedKeywordException class.

public ArgumentReservedKeywordException(string paramName)

Parameters

paramName String

The name of the parameter that caused the exception.

ArgumentReservedKeywordException(String, Exception)

Initializes a new instance of the ArgumentReservedKeywordException class.

public ArgumentReservedKeywordException(string message, Exception innerException)

Parameters

message String

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

ArgumentReservedKeywordException(String, String)

Initializes a new instance of the ArgumentReservedKeywordException class.

public ArgumentReservedKeywordException(string paramName, string message)

Parameters

paramName String

The name of the parameter that caused the exception.

message String

The message that describes the error.

ArgumentReservedKeywordException(String, String, String)

Initializes a new instance of the ArgumentReservedKeywordException class.

public ArgumentReservedKeywordException(string paramName, string actualValue, string message)

Parameters

paramName String

The name of the parameter that caused the exception.

actualValue String

The value of the argument that causes this exception.

message String

The message that describes the error.