Share via


TypeNotPresentException Constructors

Definition

Overloads

TypeNotPresentException(IntPtr, JniHandleOwnership)

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

TypeNotPresentException(String, Throwable)

Constructs a TypeNotPresentException for the named type with the specified cause.

TypeNotPresentException(IntPtr, JniHandleOwnership)

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

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

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

TypeNotPresentException(String, Throwable)

Constructs a TypeNotPresentException for the named type with the specified cause.

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

Parameters

typeName
String

the fully qualified name of the unavailable type

cause
Throwable

the exception that was thrown when the system attempted to load the named type, or null if unavailable or inapplicable

Attributes

Remarks

Constructs a TypeNotPresentException for the named type with the specified cause.

Java documentation for java.lang.TypeNotPresentException.TypeNotPresentException(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