Module java.base
Package javax.crypto

Class DecapsulateException

All Implemented Interfaces:
Serializable

public class DecapsulateException extends GeneralSecurityException
An exception that is thrown by the KEM.Decapsulator.decapsulate(byte[]) method to denote an error during decapsulation.
Since:
21
See Also:
  • Constructor Details

    • DecapsulateException

      public DecapsulateException(String message)
      Creates a DecapsulateException with the specified detail message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
    • DecapsulateException

      public DecapsulateException(String message, Throwable cause)
      Creates a DecapsulateException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)