DBConcurrencyException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다.
오버로드
DBConcurrencyException() |
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다. |
DBConcurrencyException(String) |
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다. |
DBConcurrencyException(String, Exception) |
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다. |
DBConcurrencyException(String, Exception, DataRow[]) |
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다. |
DBConcurrencyException()
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다.
public:
DBConcurrencyException();
public DBConcurrencyException ();
Public Sub New ()
설명
매개 변수가 없는 생성자는 모든 필드를 기본값으로 초기화합니다.
추가 정보
적용 대상
DBConcurrencyException(String)
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다.
public:
DBConcurrencyException(System::String ^ message);
public DBConcurrencyException (string? message);
public DBConcurrencyException (string message);
new System.Data.DBConcurrencyException : string -> System.Data.DBConcurrencyException
Public Sub New (message As String)
매개 변수
- message
- String
예외를 자세히 설명하는 텍스트 문자열입니다.
추가 정보
적용 대상
DBConcurrencyException(String, Exception)
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다.
public:
DBConcurrencyException(System::String ^ message, Exception ^ inner);
public DBConcurrencyException (string? message, Exception? inner);
public DBConcurrencyException (string message, Exception inner);
new System.Data.DBConcurrencyException : string * Exception -> System.Data.DBConcurrencyException
Public Sub New (message As String, inner As Exception)
매개 변수
- message
- String
예외를 자세히 설명하는 텍스트 문자열입니다.
- inner
- Exception
내부 예외에 대한 참조입니다.
설명
이전 예외를 catch하는 새 예외를 만들 수 있습니다. 두 번째 예외를 처리하는 코드는 내부 예외라고도 하는 이전 예외의 추가 정보를 사용하여 초기 오류의 원인을 검사할 수 있습니다.
추가 정보
적용 대상
DBConcurrencyException(String, Exception, DataRow[])
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
- Source:
- DBConcurrencyException.cs
DBConcurrencyException 클래스의 새 인스턴스를 초기화합니다.
public:
DBConcurrencyException(System::String ^ message, Exception ^ inner, cli::array <System::Data::DataRow ^> ^ dataRows);
public DBConcurrencyException (string? message, Exception? inner, System.Data.DataRow[]? dataRows);
public DBConcurrencyException (string message, Exception inner, System.Data.DataRow[] dataRows);
new System.Data.DBConcurrencyException : string * Exception * System.Data.DataRow[] -> System.Data.DBConcurrencyException
Public Sub New (message As String, inner As Exception, dataRows As DataRow())
매개 변수
- message
- String
이 예외의 원인을 설명하는 오류 메시지입니다.
- inner
- Exception
현재 예외를 발생시킨 예외이거나 내부 예외를 지정하지 않은 경우 null 참조(Visual Basic에서는 Nothing
)입니다.
추가 정보
적용 대상
.NET