C# Class LibiadaWeb.Exceptions.TypeArgumentException

Exception thrown to indicate that an inappropriate type argument was used for a type parameter to a generic type or method.
Inheritance: System.Exception
Afficher le fichier Open project: intervals-mining-lab/libiada-web

Méthodes publiques

Méthode Description
TypeArgumentException ( ) : System

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with no message.

TypeArgumentException ( string message ) : System

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message.

TypeArgumentException ( string message, Exception inner ) : System

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message and inner exception.

Method Details

TypeArgumentException() public méthode

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with no message.
public TypeArgumentException ( ) : System
Résultat System

TypeArgumentException() public méthode

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message.
public TypeArgumentException ( string message ) : System
message string /// Message for the exception. ///
Résultat System

TypeArgumentException() public méthode

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message and inner exception.
public TypeArgumentException ( string message, Exception inner ) : System
message string /// Message for the exception. ///
inner System.Exception /// Inner exception. ///
Résultat System