org.ccsds.moims.mo.mal.DestinationTransientException Maven / Gradle / Ivy
package org.ccsds.moims.mo.mal;
/**
* The DestinationTransientException exception. Destination middleware reports destination
* application does not exist.
*/
public final class DestinationTransientException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new DestinationTransientException exception.
*
*/
public DestinationTransientException() {
super(MALHelper.DESTINATION_TRANSIENT_ERROR_NUMBER, "");
}
/**
* Constructs a new DestinationTransientException exception.
*
* @param message The message of the exception.
*/
public DestinationTransientException(String message) {
super(MALHelper.DESTINATION_TRANSIENT_ERROR_NUMBER, message);
}
}