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