Package java.security

Class NoSuchAlgorithmException

All Implemented Interfaces:
Serializable

public class NoSuchAlgorithmException
extends GeneralSecurityException
NoSuchAlgorithmException indicates that a requested algorithm could not be found.
See Also:
Serialized Form
  • Constructor Details

    • NoSuchAlgorithmException

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

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

      public NoSuchAlgorithmException​(String message, Throwable cause)
      Constructs a new instance of NoSuchAlgorithmException 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.
    • NoSuchAlgorithmException

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