Lenguaje

InternalError Constructores

Definición

Sobrecargas

Nombre Description
InternalError()

Construye un objeto InternalError sin mensaje de detalle.

InternalError(Throwable)

Construye un InternalError objeto con la causa especificada y un mensaje de detalle de (cause==null ? null : cause.toString()) (que normalmente contiene la clase y el mensaje de detalle de cause).

InternalError(String)

Construye un InternalError objeto con el mensaje de detalle especificado.

InternalError(IntPtr, JniHandleOwnership)

Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.

InternalError(String, Throwable)

Construye un InternalError objeto con el mensaje de detalle y la causa especificados.

InternalError()

Construye un objeto InternalError sin mensaje de detalle.

[Android.Runtime.Register(".ctor", "()V", "")]
public InternalError();
Atributos

Comentarios

Construye un objeto InternalError sin mensaje de detalle.

Java documentación para java.lang.InternalError.InternalError().

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

InternalError(Throwable)

Construye un InternalError objeto con la causa especificada y un mensaje de detalle de (cause==null ? null : cause.toString()) (que normalmente contiene la clase y el mensaje de detalle de cause).

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

Parámetros

cause
Throwable

la causa (que se guarda para la recuperación posterior mediante el #getCause() método ). (Se permite un null valor e indica que la causa es inexistente o desconocida).

Atributos

Comentarios

Construye un InternalError objeto con la causa especificada y un mensaje de detalle de (cause==null ? null : cause.toString()) (que normalmente contiene la clase y el mensaje de detalle de cause).

Agregado en la versión 1.8.

Java documentación para java.lang.InternalError.InternalError(java.lang.Throwable).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

InternalError(String)

Construye un InternalError objeto con el mensaje de detalle especificado.

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

Parámetros

message
String

mensaje de detalle.

Atributos

Comentarios

Construye un InternalError objeto con el mensaje de detalle especificado.

Java documentación para java.lang.InternalError.InternalError(java.lang.String).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

InternalError(IntPtr, JniHandleOwnership)

Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.

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

Parámetros

javaReference
IntPtr

nativeint

que IntPtrcontiene una referencia de objeto Java Native Interface (JNI).

transfer
JniHandleOwnership

un JniHandleOwnershipvalor de tipo que indica cómo controlar javaReference

Comentarios

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

InternalError(String, Throwable)

Construye un InternalError objeto con el mensaje de detalle y la causa especificados.

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

Parámetros

message
String

el mensaje de detalles (que se guarda para su recuperación posterior mediante el #getMessage() método ).

cause
Throwable

la causa (que se guarda para la recuperación posterior mediante el #getCause() método ). (Se permite un null valor e indica que la causa es inexistente o desconocida).

Atributos

Comentarios

Construye un InternalError objeto con el mensaje de detalle y la causa especificados.

Tenga en cuenta que el mensaje de detalle asociado a causeno se incorpora automáticamente en el mensaje de detalle de este error.

Agregado en la versión 1.8.

Java documentación para java.lang.InternalError.InternalError(java.lang.String, java.lang.Throwable).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a