C# 클래스 NAnt.Core.BuildException

상속: System.ApplicationException
파일 보기 프로젝트 열기: skolima/NAnt 1 사용 예제들

공개 메소드들

메소드 설명
BuildException ( ) : System

Initializes a new instance of the BuildException class.

BuildException ( String message ) : System

Initializes a new instance of the BuildException class with a descriptive message.

BuildException ( String message, Exception innerException ) : System

Initializes a new instance of the BuildException class with the specified descriptive message and inner exception.

BuildException ( String message, Location location ) : System

Initializes a new instance of the BuildException class with a descriptive message and the location in the build file that caused the exception.

BuildException ( String message, Location location, Exception innerException ) : System

Initializes a new instance of the BuildException class with a descriptive message, the location in the build file and an instance of the exception that is the cause of the current exception.

ToString ( ) : string

Creates and returns a string representation of the current exception.

보호된 메소드들

메소드 설명
BuildException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the BuildException class with serialized data.

비공개 메소드들

메소드 설명
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

메소드 상세

BuildException() 공개 메소드

Initializes a new instance of the BuildException class.
public BuildException ( ) : System
리턴 System

BuildException() 보호된 메소드

Initializes a new instance of the BuildException class with serialized data.
protected BuildException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
리턴 System

BuildException() 공개 메소드

Initializes a new instance of the BuildException class with a descriptive message.
public BuildException ( String message ) : System
message String A descriptive message to include with the exception.
리턴 System

BuildException() 공개 메소드

Initializes a new instance of the BuildException class with the specified descriptive message and inner exception.
public BuildException ( String message, Exception innerException ) : System
message String A descriptive message to include with the exception.
innerException System.Exception A nested exception that is the cause of the current exception.
리턴 System

BuildException() 공개 메소드

Initializes a new instance of the BuildException class with a descriptive message and the location in the build file that caused the exception.
public BuildException ( String message, Location location ) : System
message String A descriptive message to include with the exception.
location Location The location in the build file where the exception occured.
리턴 System

BuildException() 공개 메소드

Initializes a new instance of the BuildException class with a descriptive message, the location in the build file and an instance of the exception that is the cause of the current exception.
public BuildException ( String message, Location location, Exception innerException ) : System
message String A descriptive message to include with the exception.
location Location The location in the build file where the exception occured.
innerException System.Exception A nested exception that is the cause of the current exception.
리턴 System

ToString() 공개 메소드

Creates and returns a string representation of the current exception.
public ToString ( ) : string
리턴 string