Most visited

Recently visited

Added in API level 1

InternalError

public class InternalError
extends VirtualMachineError

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.VirtualMachineError
         ↳ java.lang.InternalError
Known Direct Subclasses


抛出以指示Java虚拟机中发生了一些意外的内部错误。

Summary

Public constructors

InternalError()

构造一个没有详细信息的 InternalError

InternalError(String message)

用指定的详细信息构造一个 InternalError

InternalError(String message, Throwable cause)

用指定的详细信息和原因构造一个 InternalError

InternalError(Throwable cause)

构造一个 InternalError与指定的原因和详细消息 (cause==null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

InternalError

Added in API level 1
InternalError ()

构造一个没有详细信息的 InternalError

InternalError

Added in API level 1
InternalError (String message)

用指定的详细信息构造一个 InternalError

Parameters
message String: the detail message.

InternalError

Added in API level 24
InternalError (String message, 
                Throwable cause)

用指定的详细信息和原因构造一个 InternalError

请注意与 cause相关的详细消息 不会自动包含在此错误的详细消息中。

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.)

InternalError

Added in API level 24
InternalError (Throwable cause)

构造一个 InternalError与指定的原因和详细消息 (cause==null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。

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.)

Hooray!