RuleException 생성자

정의

오버로드

Name Description
RuleException()

예외 메시지의 RuleException 새 인스턴스를 초기화하고 내부 예외가 null로 설정됩니다.

RuleException(String)

메시지를 사용하여 새 인스턴스 RuleException 초기화

RuleException(String, Exception)

메시지 및 내부 예외를 사용하여 새 인스턴스 RuleException 초기화

RuleException()

예외 메시지의 RuleException 새 인스턴스를 초기화하고 내부 예외가 null로 설정됩니다.

public RuleException();
Public Sub New ()

적용 대상

RuleException(String)

메시지를 사용하여 새 인스턴스 RuleException 초기화

public RuleException(string message);
new Microsoft.SqlServer.Dac.CodeAnalysis.RuleException : string -> Microsoft.SqlServer.Dac.CodeAnalysis.RuleException
Public Sub New (message As String)

매개 변수

message
String

예외 메시지

적용 대상

RuleException(String, Exception)

메시지 및 내부 예외를 사용하여 새 인스턴스 RuleException 초기화

public RuleException(string message, Exception innerException);
new Microsoft.SqlServer.Dac.CodeAnalysis.RuleException : string * Exception -> Microsoft.SqlServer.Dac.CodeAnalysis.RuleException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

예외 메시지

innerException
Exception

이 예외에 연결된 내부 예외

적용 대상