Package java.security

Class DigestException

All Implemented Interfaces:
Serializable

public class DigestException
extends GeneralSecurityException
DigestException is a general message digest exception.
See Also:
Serialized Form
  • Constructor Details

    • DigestException

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

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

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

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