C# 클래스 TUP.AsmResolver.Exceptions.ResolveException

Represents an exception that is occured when a resolving process has failed.
상속: System.Exception
파일 보기 프로젝트 열기: Rex-Hays/GNIDA

공개 메소드들

메소드 설명
ResolveException ( Exception inner ) : System

Initializes a new ResolveException with a specific inner exception.

ResolveException ( string message ) : System

Initializes a new ResolveException with a specific message.

ResolveException ( string message, Exception inner ) : System

Initializes a new ResolveException with a specific message and inner exception.

메소드 상세

ResolveException() 공개 메소드

Initializes a new ResolveException with a specific inner exception.
public ResolveException ( Exception inner ) : System
inner System.Exception The inner exception of the exception.
리턴 System

ResolveException() 공개 메소드

Initializes a new ResolveException with a specific message.
public ResolveException ( string message ) : System
message string The message of the exception.
리턴 System

ResolveException() 공개 메소드

Initializes a new ResolveException with a specific message and inner exception.
public ResolveException ( string message, Exception inner ) : System
message string The message of the exception.
inner System.Exception The inner exception of the exception.
리턴 System