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 Summary
ConstructorsConstructorDescriptionDecapsulateException(String message) Creates aDecapsulateExceptionwith the specified detail message.DecapsulateException(String message, Throwable cause) Creates aDecapsulateExceptionwith the specified detail message and cause. - 
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
DecapsulateException
Creates aDecapsulateExceptionwith the specified detail message.- Parameters:
 message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
 - 
DecapsulateException
Creates aDecapsulateExceptionwith the specified detail message and cause.- Parameters:
 message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 -