模块  java.xml.crypto
软件包  javax.xml.crypto

Class MarshalException

    • 构造方法详细信息

      • MarshalException

        public MarshalException()
        构造一个新的 MarshalException其中包含 null作为其详细消息。
      • MarshalException

        public MarshalException​(String message)
        使用指定的详细消息构造一个新的 MarshalException
        参数
        message - 详细信息
      • MarshalException

        public MarshalException​(String message,
                                Throwable cause)
        使用指定的详细消息和原因构造一个新的MarshalException

        请注意,与cause关联的详细消息不会自动合并到此例外的详细消息中。

        参数
        message - 详细信息
        cause - 原因(允许值为 null ,表示原因不存在或未知。)
      • MarshalException

        public MarshalException​(Throwable cause)
        构造一个新的 MarshalException与指定的原因和详细消息 (cause==null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。
        参数
        cause - 原因(允许值为 null ,表示原因不存在或未知。)
    • 方法详细信息

      • getCause

        public Throwable getCause()
        如果原因不存在或未知,则返回此MarshalExceptionnull的原因。 (原因是导致MarshalException被抛出的throwable。)
        重写:
        getCauseThrowable
        结果
        如果原因不存在或未知, MarshalExceptionnull的原因。
      • printStackTrace

        public void printStackTrace()
        打印此 MarshalException ,其回溯和原因的回溯到标准错误流。
        重写:
        printStackTraceThrowable
      • printStackTrace

        public void printStackTrace​(PrintStream s)
        打印此 MarshalException ,其回溯和原因的回溯到指定的打印流。
        重写:
        printStackTraceThrowable
        参数
        s - PrintStream用于输出
      • printStackTrace

        public void printStackTrace​(PrintWriter s)
        打印此 MarshalException ,其回溯和原因的回溯到指定的打印 MarshalException
        重写:
        printStackTraceThrowable
        参数
        s - PrintWriter to use for output