Package java.security

Class ProviderException

All Implemented Interfaces:
Serializable

public class ProviderException
extends RuntimeException
ProviderException is a general exception, thrown by security Providers.
See Also:
Provider, Serialized Form
  • Constructor Details

    • ProviderException

      public ProviderException​(String msg)
      Constructs a new instance of ProviderException with the given message.
      Parameters:
      msg - the detail message for this exception.
    • ProviderException

      public ProviderException()
      Constructs a new instance of ProviderException.
    • ProviderException

      public ProviderException​(String message, Throwable cause)
      Constructs a new instance of ProviderException with the given message and the cause.
      Parameters:
      message - the detail message for this exception.
      cause - the exception which is the cause for this exception.
    • ProviderException

      public ProviderException​(Throwable cause)
      Constructs a new instance of ProviderException with the cause.
      Parameters:
      cause - the exception which is the cause for this exception.