Share via


LambdaConversionException Constructors

Definition

Overloads

LambdaConversionException()

Constructs a LambdaConversionException.

LambdaConversionException(Throwable)

Constructs a LambdaConversionException with a cause.

LambdaConversionException(String)

Constructs a LambdaConversionException with a message.

LambdaConversionException(IntPtr, JniHandleOwnership)
LambdaConversionException(String, Throwable)

Constructs a LambdaConversionException with a message and cause.

LambdaConversionException(String, Throwable, Boolean, Boolean)

Constructs a LambdaConversionException with a message, cause, and other settings.

LambdaConversionException()

Constructs a LambdaConversionException.

[Android.Runtime.Register(".ctor", "()V", "", ApiSince=26)]
public LambdaConversionException ();
Attributes

Remarks

Constructs a LambdaConversionException.

Java documentation for java.lang.invoke.LambdaConversionException.LambdaConversionException().

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

LambdaConversionException(Throwable)

Constructs a LambdaConversionException with a cause.

[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "", ApiSince=26)]
public LambdaConversionException (Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "", ApiSince=26)>]
new Java.Lang.Invoke.LambdaConversionException : Java.Lang.Throwable -> Java.Lang.Invoke.LambdaConversionException

Parameters

cause
Throwable

the cause

Attributes

Remarks

Constructs a LambdaConversionException with a cause.

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

LambdaConversionException(String)

Constructs a LambdaConversionException with a message.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=26)]
public LambdaConversionException (string? message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=26)>]
new Java.Lang.Invoke.LambdaConversionException : string -> Java.Lang.Invoke.LambdaConversionException

Parameters

message
String

the detail message

Attributes

Remarks

Constructs a LambdaConversionException with a message.

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

LambdaConversionException(IntPtr, JniHandleOwnership)

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

Parameters

javaReference
IntPtr

nativeint

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

LambdaConversionException(String, Throwable)

Constructs a LambdaConversionException with a message and cause.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=26)]
public LambdaConversionException (string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=26)>]
new Java.Lang.Invoke.LambdaConversionException : string * Java.Lang.Throwable -> Java.Lang.Invoke.LambdaConversionException

Parameters

message
String

the detail message

cause
Throwable

the cause

Attributes

Remarks

Constructs a LambdaConversionException with a message and cause.

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

LambdaConversionException(String, Throwable, Boolean, Boolean)

Constructs a LambdaConversionException with a message, cause, and other settings.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V", "", ApiSince=26)]
public LambdaConversionException (string? message, Java.Lang.Throwable? cause, bool enableSuppression, bool writableStackTrace);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V", "", ApiSince=26)>]
new Java.Lang.Invoke.LambdaConversionException : string * Java.Lang.Throwable * bool * bool -> Java.Lang.Invoke.LambdaConversionException

Parameters

message
String

the detail message

cause
Throwable

the cause

enableSuppression
Boolean

whether or not suppressed exceptions are enabled

writableStackTrace
Boolean

whether or not the stack trace is writable

Attributes

Remarks

Constructs a LambdaConversionException with a message, cause, and other settings.

Java documentation for java.lang.invoke.LambdaConversionException.LambdaConversionException(java.lang.String, java.lang.Throwable, boolean, boolean).

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