ProviderIncompatibleException Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
yeni bir örneğini ProviderIncompatibleExceptionbaşlatır.
Aşırı Yüklemeler
ProviderIncompatibleException() |
yeni bir örneğini ProviderIncompatibleExceptionbaşlatır. |
ProviderIncompatibleException(String) |
Özel bir hata iletisiyle yeni bir örneğini ProviderIncompatibleException başlatır. |
ProviderIncompatibleException(String, Exception) |
Belirtilen hata iletisini kullanan yeni bir örneğini ProviderIncompatibleException başlatır. |
Açıklamalar
Kodunuzda özel durumları işleme hakkında daha fazla bilgi için bkz Exception. .
ProviderIncompatibleException()
yeni bir örneğini ProviderIncompatibleExceptionbaşlatır.
public:
ProviderIncompatibleException();
public ProviderIncompatibleException ();
Public Sub New ()
Açıklamalar
Kodunuzda özel durumları işleme hakkında daha fazla bilgi için bkz Exception. .
Şunlara uygulanır
ProviderIncompatibleException(String)
Özel bir hata iletisiyle yeni bir örneğini ProviderIncompatibleException başlatır.
public:
ProviderIncompatibleException(System::String ^ message);
public ProviderIncompatibleException (string message);
new System.Data.ProviderIncompatibleException : string -> System.Data.ProviderIncompatibleException
Public Sub New (message As String)
Parametreler
- message
- String
Hatayı açıklayan ileti.
Açıklamalar
Kodunuzda özel durumları işleme hakkında daha fazla bilgi için bkz Exception. .
Şunlara uygulanır
ProviderIncompatibleException(String, Exception)
Belirtilen hata iletisini kullanan yeni bir örneğini ProviderIncompatibleException başlatır.
public:
ProviderIncompatibleException(System::String ^ message, Exception ^ innerException);
public ProviderIncompatibleException (string message, Exception innerException);
new System.Data.ProviderIncompatibleException : string * Exception -> System.Data.ProviderIncompatibleException
Public Sub New (message As String, innerException As Exception)
Parametreler
- message
- String
Hatayı açıklayan ileti.
- innerException
- Exception
Geçerli özel durumun nedeni olan özel durum veya iç özel durum belirtilmezse null başvuru (Nothing
Visual Basic'te).
Açıklamalar
Kodunuzda özel durumları işleme hakkında daha fazla bilgi için bkz Exception. .