SQLTimeoutException Constructors

Definition

Overloads

SQLTimeoutException()

Constructs a <code>SQLTimeoutException</code> object.

SQLTimeoutException(Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>cause</code>.

SQLTimeoutException(String)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>.

SQLTimeoutException(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

SQLTimeoutException(String, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code> and <code>cause</code>.

SQLTimeoutException(String, String)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code> and <code>SQLState</code>.

SQLTimeoutException(String, String, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code> and <code>cause</code>.

SQLTimeoutException(String, String, Int32)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code> and <code>vendorCode</code>.

SQLTimeoutException(String, String, Int32, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code> and <code>cause</code>.

SQLTimeoutException()

Constructs a <code>SQLTimeoutException</code> object.

[Android.Runtime.Register(".ctor", "()V", "")]
public SQLTimeoutException ();
Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>cause</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")]
public SQLTimeoutException (Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")>]
new Java.Sql.SQLTimeoutException : Java.Lang.Throwable -> Java.Sql.SQLTimeoutException

Parameters

cause
Throwable

the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating the cause is non-existent or unknown.

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.Throwable).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public SQLTimeoutException (string? reason);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Sql.SQLTimeoutException : string -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected SQLTimeoutException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Sql.SQLTimeoutException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Sql.SQLTimeoutException

Parameters

javaReference
IntPtr

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code> and <code>cause</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public SQLTimeoutException (string? reason, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Sql.SQLTimeoutException : string * Java.Lang.Throwable -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception.

cause
Throwable

the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating the cause is non-existent or unknown.

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String, java.lang.Throwable).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String, String)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code> and <code>SQLState</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "")]
public SQLTimeoutException (string? reason, string? SQLState);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;)V", "")>]
new Java.Sql.SQLTimeoutException : string * string -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception

SQLState
String

an XOPEN or SQL:2003 code identifying the exception

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String, java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String, String, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code> and <code>cause</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public SQLTimeoutException (string? reason, string? SQLState, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Sql.SQLTimeoutException : string * string * Java.Lang.Throwable -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception.

SQLState
String

an XOPEN or SQL:2003 code identifying the exception

cause
Throwable

the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating the cause is non-existent or unknown.

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String, java.lang.String, java.lang.Throwable).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String, String, Int32)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code> and <code>vendorCode</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;I)V", "")]
public SQLTimeoutException (string? reason, string? SQLState, int vendorCode);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;I)V", "")>]
new Java.Sql.SQLTimeoutException : string * string * int -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception

SQLState
String

an XOPEN or SQL:2003 code identifying the exception

vendorCode
Int32

a database vendor specific exception code

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String, java.lang.String, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SQLTimeoutException(String, String, Int32, Throwable)

Constructs a <code>SQLTimeoutException</code> object with a given <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code> and <code>cause</code>.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V", "")]
public SQLTimeoutException (string? reason, string? SQLState, int vendorCode, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V", "")>]
new Java.Sql.SQLTimeoutException : string * string * int * Java.Lang.Throwable -> Java.Sql.SQLTimeoutException

Parameters

reason
String

a description of the exception

SQLState
String

an XOPEN or SQL:2003 code identifying the exception

vendorCode
Int32

a database vendor-specific exception code

cause
Throwable

the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating the cause is non-existent or unknown.

Attributes

Remarks

Java documentation for java.sql.SQLTimeoutException.SQLTimeoutException(java.lang.String, java.lang.String, int, java.lang.Throwable).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to