Table of Contents

Class TypeArgumentOutOfRangeException

Namespace
Cuemon
Assembly
Cuemon.Core.dll

The exception that is thrown when the value of an type argument is outside the allowable range of values as defined by the invoked method.

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

Constructors

TypeArgumentOutOfRangeException()

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException()

TypeArgumentOutOfRangeException(String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

TypeArgumentOutOfRangeException(String, Exception)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(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.

TypeArgumentOutOfRangeException(String, Object, String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName, object actualValue, string message)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

actualValue Object

The value of the argument that causes this exception.

message String

The message that describes the error.

TypeArgumentOutOfRangeException(String, String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName, string message)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

message String

The message that describes the error.