- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- java.security.cert.CertPathBuilderException
-
- 实现的所有接口
-
Serializable
public class CertPathBuilderException extends GeneralSecurityException
指示使用CertPathBuilder
构建证书路径时遇到的各种问题之一的异常。CertPathBuilderException
为包装异常提供支持。getCause
方法返回引发此异常的throwable(如果有)。并发访问
除非另有说明,否则此类中定义的方法不是线程安全的。 需要同时访问单个对象的多个线程应在它们之间进行同步并提供必要的锁定。 每个操作单独对象的多个线程不需要同步。
- 从以下版本开始:
- 1.4
- 另请参见:
-
CertPathBuilder
, Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 CertPathBuilderException()
创建一个CertPathBuilderException
其中包含null
作为其详细消息。CertPathBuilderException(String msg)
使用给定的详细消息创建CertPathBuilderException
。CertPathBuilderException(String msg, Throwable cause)
使用指定的详细消息和原因创建CertPathBuilderException
。CertPathBuilderException(Throwable cause)
创建一个包装指定throwable的CertPathBuilderException
。
-
方法摘要
-
-
-
构造方法详细信息
-
CertPathBuilderException
public CertPathBuilderException()
创建CertPathBuilderException
其中包含null
作为其详细消息。
-
CertPathBuilderException
public CertPathBuilderException(String msg)
使用给定的详细消息创建CertPathBuilderException
。 详细消息是String
,其更详细地描述了该特定异常。- 参数
-
msg
- 详细信息
-
CertPathBuilderException
public CertPathBuilderException(Throwable cause)
创建一个包装指定throwable的CertPathBuilderException
。 这允许将任何异常转换为CertPathBuilderException
,同时保留有关包装异常的信息,这可能对调试很有用。 详细消息设置为(cause==null ? null : cause.toString()
)(通常包含原因的类和详细消息)。- 参数
-
cause
- 原因(保存以供以后通过getCause()
方法检索)。 (允许值为null
,表示原因不存在或未知。)
-
CertPathBuilderException
public CertPathBuilderException(String msg, Throwable cause)
使用指定的详细消息和原因创建CertPathBuilderException
。- 参数
-
msg
- 详细信息 -
cause
- 原因(保存以供以后通过getCause()
方法检索)。 (允许值为null
,表示原因不存在或未知。)
-
-