ReflectiveOperationException 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
ReflectiveOperationException() |
Constructs a new exception with |
ReflectiveOperationException(Throwable) |
Constructs a new exception with the specified cause and a detail
message of |
ReflectiveOperationException(String) |
Constructs a new exception with the specified detail message. |
ReflectiveOperationException(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
ReflectiveOperationException(String, Throwable) |
Constructs a new exception with the specified detail message and cause. |
ReflectiveOperationException()
Constructs a new exception with null
as its detail
message.
[Android.Runtime.Register(".ctor", "()V", "")]
public ReflectiveOperationException ();
- Attributes
Remarks
Constructs a new exception with null
as its detail message. The cause is not initialized, and may subsequently be initialized by a call to #initCause
.
Java documentation for java.lang.ReflectiveOperationException.ReflectiveOperationException()
.
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
ReflectiveOperationException(Throwable)
Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString())
(which
typically contains the class and detail message of cause
).
[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")]
public ReflectiveOperationException (Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")>]
new Java.Lang.ReflectiveOperationException : Java.Lang.Throwable -> Java.Lang.ReflectiveOperationException
Parameters
- cause
- Throwable
the cause (which is saved for later retrieval by the
#getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)
- Attributes
Remarks
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of 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
ReflectiveOperationException(String)
Constructs a new exception with the specified detail message.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public ReflectiveOperationException (string? message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Lang.ReflectiveOperationException : string -> Java.Lang.ReflectiveOperationException
Parameters
- message
- String
the detail message. The detail message is saved for
later retrieval by the #getMessage()
method.
- Attributes
Remarks
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to #initCause
.
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
ReflectiveOperationException(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected ReflectiveOperationException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Lang.ReflectiveOperationException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Lang.ReflectiveOperationException
Parameters
- 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
ReflectiveOperationException(String, Throwable)
Constructs a new exception with the specified detail message and cause.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public ReflectiveOperationException (string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Lang.ReflectiveOperationException : string * Java.Lang.Throwable -> Java.Lang.ReflectiveOperationException
Parameters
- message
- String
the detail message (which is saved for later retrieval
by the #getMessage()
method).
- cause
- Throwable
the cause (which is saved for later retrieval by the
#getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)
- Attributes
Remarks
Constructs a new exception with the specified detail message and cause.
Note that the detail message associated with cause
is <em>not</em> automatically incorporated in this exception's detail 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.