Class DecapsulateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
javax.crypto.DecapsulateException
- All Implemented Interfaces:
- Serializable
An exception that is thrown by the
 
KEM.Decapsulator.decapsulate(byte[]) method to denote an
 error during decapsulation.- Since:
- 21
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionDecapsulateException(String message) Creates aDecapsulateExceptionwith the specified detail message.DecapsulateException(String message, Throwable cause) Creates aDecapsulateExceptionwith the specified detail message and cause.
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
DecapsulateExceptionCreates aDecapsulateExceptionwith the specified detail message.- Parameters:
- message- the detail message (which is saved for later retrieval by the- Throwable.getMessage()method).
 
- 
DecapsulateExceptionCreates aDecapsulateExceptionwith 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- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
-