Module  java.base
软件包  java.lang

Class VirtualMachineError

    • 构造方法详细信息

      • VirtualMachineError

        public VirtualMachineError​()
        构造一个 VirtualMachineError ,没有详细信息。
      • VirtualMachineError

        public VirtualMachineError​(String message)
        构造具有指定详细消息的 VirtualMachineError
        参数
        message - 详细信息。
      • VirtualMachineError

        public VirtualMachineError​(String message,
                                   Throwable cause)
        构造一个具有指定的详细信息和原因的VirtualMachineError

        请注意,与cause相关联的详细信息不会自动并入此错误的详细消息。

        参数
        message - 详细信息(保存以供 Throwable.getMessage()方法稍后检索)。
        cause - 原因(保存以供Throwable.getCause()方法后续检索)。 (A null值是允许的,并且表示原因不存在或未知。)
        从以下版本开始:
        1.8
      • VirtualMachineError

        public VirtualMachineError​(Throwable cause)
        构造一个一个 VirtualMachineError与指定的原因和详细消息 (cause==null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。
        参数
        cause - 原因(由Throwable.getCause()方法保存供以后检索)。 (A null允许值,表示原因不存在或未知。)
        从以下版本开始:
        1.8