Module  java.rmi
软件包  java.rmi

Class RemoteException

    • 字段详细信息

      • detail

        public Throwable detail
        远程异常的原因。

        该领域早于通用异常链接工具。 Throwable.getCause()方法现在是获取此信息的首选方法。

    • 构造方法详细信息

      • RemoteException

        public RemoteException​()
        构造一个 RemoteException
      • RemoteException

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

        public RemoteException​(String s,
                               Throwable cause)
        构造一个具有指定的详细信息和原因的RemoteException 该构造函数将detail字段设置为指定的Throwable
        参数
        s - 详细信息
        cause - 原因
    • 方法详细信息

      • getMessage

        public String getMessage​()
        返回详细信息,包括原因的消息(如果有的话)的异常。
        重写:
        getMessageThrowable
        结果
        详细信息
      • getCause

        public Throwable getCause​()
        返回此异常的原因。 此方法返回值为detail字段。
        重写:
        getCauseThrowable
        结果
        原因,可能是 null
        从以下版本开始:
        1.4