Module  java.xml.bind
软件包  javax.xml.bind

Class MarshalException

    • 构造方法详细信息

      • MarshalException

        public MarshalException​(String message)
        使用指定的详细消息构造MarshalException。 errorCode和linkedException将默认为null。
        参数
        message - 异常的描述
      • MarshalException

        public MarshalException​(String message,
                                String errorCode)
        构造具有指定的详细消息和供应商特定的错误代码的MarshalException。 linkedException将默认为null。
        参数
        message - 异常的描述
        errorCode - 指定供应商特定错误代码的字符串
      • MarshalException

        public MarshalException​(Throwable exception)
        使用linkedException构造MarshalException。 详细消息和供应商特定的错误代码将默认为null。
        参数
        exception - 链接异常
      • MarshalException

        public MarshalException​(String message,
                                Throwable exception)
        使用指定的详细消息和linkedException构造MarshalException。 errorCode将默认为null。
        参数
        message - 异常的描述
        exception - 链接异常
      • MarshalException

        public MarshalException​(String message,
                                String errorCode,
                                Throwable exception)
        构造具有指定的详细消息,供应商特定的错误代码和linkedException的MarshalException。
        参数
        message - 异常的描述
        errorCode - 指定供应商特定错误代码的字符串
        exception - 链接异常