CancellationException Constructors

Definition

Overloads

CancellationException()

Constructs a CancellationException with no detail message.

CancellationException(String)

Constructs a CancellationException with the specified detail message.

CancellationException(IntPtr, JniHandleOwnership)

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

CancellationException()

Constructs a CancellationException with no detail message.

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

Remarks

Constructs a CancellationException with no detail message.

Java documentation for java.util.concurrent.CancellationException.CancellationException().

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

CancellationException(String)

Constructs a CancellationException with the specified detail message.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public CancellationException (string? message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Util.Concurrent.CancellationException : string -> Java.Util.Concurrent.CancellationException

Parameters

message
String

the detail message

Attributes

Remarks

Constructs a CancellationException with the specified detail message.

Java documentation for java.util.concurrent.CancellationException.CancellationException(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

CancellationException(IntPtr, JniHandleOwnership)

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

protected CancellationException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Concurrent.CancellationException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Concurrent.CancellationException

Parameters

javaReference
IntPtr

nativeint

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