C# 클래스 LibiadaWeb.Exceptions.TypeArgumentException

Exception thrown to indicate that an inappropriate type argument was used for a type parameter to a generic type or method.
상속: System.Exception
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-web

공개 메소드들

메소드 설명
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.

메소드 상세

TypeArgumentException() 공개 메소드

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with no message.
public TypeArgumentException ( ) : System
리턴 System

TypeArgumentException() 공개 메소드

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. ///
리턴 System

TypeArgumentException() 공개 메소드

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. ///
리턴 System