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

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

package org.ccsds.moims.mo.mal;

/**
 * The DeliveryDelayedException exception. Message queued somewhere awaiting contact. 
 */
public final class DeliveryDelayedException extends org.ccsds.moims.mo.mal.MOErrorException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy