LambdaConversionException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
LambdaConversionException() |
Constructs a |
LambdaConversionException(Throwable) |
Constructs a |
LambdaConversionException(String) |
Constructs a |
LambdaConversionException(IntPtr, JniHandleOwnership) | |
LambdaConversionException(String, Throwable) |
Constructs a |
LambdaConversionException(String, Throwable, Boolean, Boolean) |
Constructs a |
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.
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.
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
- transfer
- JniHandleOwnership
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.
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.
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.