public class CertPathBuilderException
extends GeneralSecurityException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.security.GeneralSecurityException | |||
↳ | java.security.cert.CertPathBuilderException |
表示在使用 CertPathBuilder
构建认证路径时遇到的各种问题之一的例外情况。
CertPathBuilderException
提供了对包装异常的支持。 getCause
方法返回抛出异常的throwable(如果有的话)。
并发访问
除非另有说明,否则此类中定义的方法不是线程安全的。 需要同时访问单个对象的多个线程应该自己同步并提供必要的锁定。 每个操作单独对象的多个线程不需要同步。
也可以看看:
Public constructors |
|
---|---|
CertPathBuilderException() 使用 |
|
CertPathBuilderException(String msg) 用给定的详细信息创建一个 |
|
CertPathBuilderException(Throwable cause) 创建一个包装指定的throwable的 |
|
CertPathBuilderException(String msg, Throwable cause) 用指定的详细信息和原因创建一个 |
Inherited methods |
|
---|---|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
CertPathBuilderException ()
用 null
作为详细消息创建一个 CertPathBuilderException
。
CertPathBuilderException (String msg)
用给定的详细信息创建一个CertPathBuilderException
。 详细消息是一个String
,它更详细地描述了这个特定的异常。
Parameters | |
---|---|
msg |
String : the detail message |
CertPathBuilderException (Throwable cause)
创建包装指定的可抛出物的CertPathBuilderException
。 这允许将任何异常转换为CertPathBuilderException
,同时保留有关包装异常的信息,这对于调试可能很有用。 详细消息设置为( cause==null ? null : cause.toString()
)(通常包含原因的类和详细消息)。
Parameters | |
---|---|
cause |
Throwable : the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
CertPathBuilderException (String msg, Throwable cause)
用指定的详细信息和原因创建一个 CertPathBuilderException
。
Parameters | |
---|---|
msg |
String : the detail message |
cause |
Throwable : the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |