org.ccsds.moims.mo.mal.EncryptionFailException Maven / Gradle / Ivy
package org.ccsds.moims.mo.mal;
/**
* The EncryptionFailException exception. A failure in the MAL to encrypt/decrypt the
* message.
*/
public final class EncryptionFailException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new EncryptionFailException exception.
*
*/
public EncryptionFailException() {
super(MALHelper.ENCRYPTION_FAIL_ERROR_NUMBER, "");
}
/**
* Constructs a new EncryptionFailException exception.
*
* @param message The message of the exception.
*/
public EncryptionFailException(String message) {
super(MALHelper.ENCRYPTION_FAIL_ERROR_NUMBER, message);
}
}