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
StringThe 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
StringThe message that describes the error.
innerException
ExceptionThe 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
StringThe name of the type parameter that caused the exception.
actualValue
ObjectThe value of the argument that causes this exception.
message
StringThe message that describes the error.
TypeArgumentOutOfRangeException(String, String)
Initializes a new instance of the TypeArgumentOutOfRangeException class.
public TypeArgumentOutOfRangeException(string typeParamName, string message)