模块  java.base
软件包  java.security

Class ProviderException

  • 实现的所有接口
    Serializable

    public class ProviderException
    extends RuntimeException
    Provider异常的运行时异常(例如错误配置错误或不可恢复的内部错误),这些异常可能由Providers子类化,以抛出特定于提供程序的特定运行时错误。
    从以下版本开始:
    1.1
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • ProviderException

        public ProviderException()
        构造一个没有详细消息的ProviderException。 详细消息是描述此特定异常的String。
      • ProviderException

        public ProviderException​(String s)
        使用指定的详细消息构造ProviderException。 详细消息是描述此特定异常的String。
        参数
        s - 详细信息。
      • ProviderException

        public ProviderException​(String message,
                                 Throwable cause)
        使用指定的详细消息和原因创建 ProviderException
        参数
        message - 详细消息(保存以供以后通过 Throwable.getMessage()方法检索)。
        cause - 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许值为null ,表示原因不存在或未知。)
        从以下版本开始:
        1.5
      • ProviderException

        public ProviderException​(Throwable cause)
        创建 ProviderException与指定的原因和详细消息 (cause==null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。
        参数
        cause - 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许值为null ,表示原因不存在或未知。)
        从以下版本开始:
        1.5