org.ccsds.moims.mo.mal.DestinationTransientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-area001-v003-mal Show documentation
Show all versions of api-area001-v003-mal Show documentation
An implementation of the Java API for the CCSDS MAL
The newest version!
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 extraInformation The extraInformation of the exception.
*/
public DestinationTransientException(Object extraInformation) {
super(MALHelper.DESTINATION_TRANSIENT_ERROR_NUMBER, extraInformation);
}
}