All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ccsds.moims.mo.mal.DestinationLostException Maven / Gradle / Ivy

package org.ccsds.moims.mo.mal;

/**
 * The DestinationLostException exception. Destination lost halfway through conversation. 
 */
public final class DestinationLostException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new DestinationLostException exception.
     * 
     */
    public DestinationLostException() {
        super(MALHelper.DESTINATION_LOST_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new DestinationLostException exception.
     * 
     * @param message The message of the exception.
     */
    public DestinationLostException(String message) {
        super(MALHelper.DESTINATION_LOST_ERROR_NUMBER, message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy