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
typeParamNamestringThe 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
messagestringThe message that describes the error.
innerExceptionExceptionThe 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
typeParamNamestringThe name of the type parameter that caused the exception.
actualValueobjectThe value of the argument that causes this exception.
messagestringThe message that describes the error.
TypeArgumentOutOfRangeException(string, string)
Initializes a new instance of the TypeArgumentOutOfRangeException class.
public TypeArgumentOutOfRangeException(string typeParamName, string message)